window_onload = new Array();

function openWindow(url,width,height,name,options)
{
	if (! options > '')
		options = "Toolbar=0,resizable=yes,menubar=0,location=0,directories=0,left=100,top=100,scrollbars=yes"
	options = "width="+width+",height="+height+","+options;
	newWindow = window.open( url, name,options);
	newWindow.focus();
}

function popup(url,width,height)
{
	openWindow(url,width,height,"popup","Toolbar=0,resizable=yes,menubar=0,location=0,directories=0,left=100,top=100,scrollbars=yes")
}

function lockedPopup(url,width,height)
{
	openWindow(url,width,height,"lockedPopup","Toolbar=0,resizable=no,menubar=0,location=0,directories=0,left=100,top=100,scrollbars=no")
}

function executeOnLoad()
{
	for (i=0;i<window_onload.length;i++)
		eval(window_onload[i]);

}
window.onload = executeOnLoad;