

function popup_windowNorm(sUrl)
{
	popup_windowSize(sUrl,600,440);
}

function popup_windowLarge(sUrl)
{
	popup_windowSize(sUrl,802,600);
}


function popup_windowLargeMenuBar(sUrl)
{
	window.open(sUrl,'','top=0,left=0,height=600,width=802,status=no,toolbar=yes,menubar=yes,location=yes,resizable=yes,titlebar=yes,scrollbars=yes');	
}

function popup_windowSize(sUrl,width,height,features)
{	
	if ( features!=null )
		window.open(sUrl,'','top=0,left=0,height='+height+',width='+width+','+features);
	else
		window.open(sUrl,'','top=0,left=0,height='+height+',width='+width+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=yes,scrollbars=yes');	
}
function popup_window(sUrl)
{
	if (sUrl!="") {
		window.open(sUrl,"","top=0,left=0,width=650,height=600,status=no,toolbar=yes,menubar=yes,location=no,resizable=yes,titlebar=no,scrollbars=yes");
	}
}