<!--
//Global Popup window object
var myDetailsWin;
var pageFormPost;

function myPopup(pageURL,WinName,width,height,scroll,statusbar)
{
	howDeep 			= screen.availHeight;
	howWide 			= screen.availWidth;

	if (width == null)	{
		width 				= 820;
	}
	
	if (height == null)	{
		height 				= 520;
	}

	widthOffset 			= (width / 1.75)
	heightOffset 			= (height / 2)
	
	var Xwindow 			= (howWide / 2) - widthOffset;
	var Ywindow 			= (howDeep / 2) - heightOffset;
	var applyFullscreen 	= ""
	if (howWide < width || howDeep < height)	{	width = howWide-15; height = howDeep-100;Xwindow = 0;Ywindow = 0 	}

	window.open(pageURL,WinName,'width=' + width + ',height=' + height + ',resizable=yes,statusbar=' + statusbar + ',status=' + statusbar + ',toolbar=yes,personalbar=yes,directories=no,locationbar=yes,scrollbars=' + scroll + ',left='+Xwindow+',top='+Ywindow + ',screenX='+Xwindow+',screenY='+Ywindow)
}

function myPopupBasic(pageURL,WinName,width,height,scroll,statusbar)
{
	howDeep 			= screen.availHeight;
	howWide 			= screen.availWidth;

	if (width == null)	{
		width 				= 820;
	}
	
	if (height == null)	{
		height 				= 520;
	}

	widthOffset 			= (width / 1.75)
	heightOffset 			= (height / 2)
	
	var Xwindow 			= (howWide / 2) - widthOffset;
	var Ywindow 			= (howDeep / 2) - heightOffset;
	var applyFullscreen 	= ""
	if (howWide < width || howDeep < height)	{	width = howWide-15; height = howDeep-100;Xwindow = 0;Ywindow = 0 	}

	window.open(pageURL,WinName,'width=' + width + ',height=' + height + ',resizable=no,statusbar=' + statusbar + ',status=' + statusbar + ',toolbar=no,personalbar=no,directories=no,locationbar=no,scrollbars=' + scroll + ',left='+Xwindow+',top='+Ywindow + ',screenX='+Xwindow+',screenY='+Ywindow)
}

function changeStatus(statustext)
{
	window.status = statustext ;
	return true;
}

-->