
// toolbox
function openPopup(theURL, winName, w, h, scrollbar, resizable, toolbar, statusbar, menubar)
{
	var left = ((window.screen.width - w) / 2);
	var top = ((window.screen.height - h) / 2);
	//
	toolbar_str = toolbar ? 'yes' : 'no';
	menubar_str = menubar ? 'yes' : 'no';
	statusbar_str = statusbar ? 'yes' : 'no';
	scrollbar_str = scrollbar ? 'yes' : 'no';
	resizable_str = resizable ? 'yes' : 'no';
	//
	window.open(theURL, winName, 'left='+left+',top='+top+',width='+w+',height='+h+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

/*
*******************************************************
** div controlling
*******************************************************
*/

function toogleDiv(divName)
{
	if (document.getElementById){
		obj = document.getElementById(divName);
		if(obj.style.display == "none"){
			showDiv(divName);
		} else {
			hideDiv(divName);
		}
	}
}

function hideDiv(divName)
{
	$(divName).style.display = "none";
}

function showDiv(divName)
{
	$(divName).style.display = "block";
}
