function popup(url, title, width, height) 
{
	window.open(url, title, 'top=0,left=0,width='+width+',height='+height+',scrollbars=yes,resizable=yes,toolbar=no,menubar=no,location=no').focus();
	var bAgent = window.navigator.userAgent; 
	var bAppName = window.navigator.appName;
	
	return bAppName.indexOf("Explorer") >= 0 && bAgent.indexOf("Mozilla/3") >= 0 && bAgent.indexOf("Mac") >= 0;
}

function windowOnLoad()
{
	if (typeof(runPageScripts) != "undefined")
		runPageScripts();
}