<!-- Begin

function PopUp(ThePage)
	{
		win = window.open(ThePage)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}

function PopUp1(recentURL)
	{
		win = window.open(recentURL, "PopUp", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizeable=no,copyhistory=no,width=600,height=320")
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}

function PopUp_nnr(recentURL)
	{
		win = window.open(recentURL, "PopUp", "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizeable=yes,copyhistory=no,width=600,height=320")
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
	function PopUp_pub(recentURL)
	{
		win = window.open(recentURL, "PopUp", "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizeable=yes,copyhistory=no,width=600,height=320")
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
function PopUp2(recentURL, w, h)
	{
		win = window.open(recentURL, "PopUp", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizeable=no,copyhistory=no,width=" + w + ",height=" + h)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}	
//  End -->
