function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
galwindow = window.open(strURL, 'newWin', strOptions);
// galwindow.moveTo(100,60);
// window.opener.location.href=(strURL);
}


	function hide_unhide(off, on){
		document.getElementById(off).style.display = "none";
		document.getElementById(on).style.display = "inline";
	}
