
var onload_events=new Array();
var home_url="";
 
function loading(){
 m=onload_events;
 for(i=0;i<m.length;i++){eval(m[i]);}
}
function onloading(s){
	onload_events[onload_events.length]=s;
}
function pop(url,name,width,height){
	if (url=='') {return;}
	if (name=='') name='';
	if (!(width>0)) width=300;
	if (!(height>0)) height=200;
	url=home_url+url;
	//alert('zzzzzzzzzzzzz');
	var a=window.open(url,name,"toolbar=yes,scrollbars=yes,resizable=yes,width="+width+",height="+height);
	a.focus();
}
function popsimple(url,name,width,height){
	if (url=='') {return;}
	if (name=='') name='';
	if (!(width>0)) width=300;
	if (!(height>0)) height=200;
	url=home_url+url;
	//alert('zzzzzzzzzzzzz');
	if (screen){
		x = (screen.availWidth  - width)/2;
		y = (screen.availHeight - height)/2;
	} else {
		x = (640 - width)/2;
		y = (480 - height)/2;
	}
	
	var a=window.open(url,name,"toolbar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+", screenX="+x+"screenY="+y);
	a.focus();
}
