function ignore(){
return true;
}
function winOpen(url,name,width,height,auto){

	if(!(auto)){
		auto = 0;
	}
	
	
	makewindow = window.open(url,name,"width=" + width +",height=" + height +",toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=" + auto);
	self.onerror=ignore;
	makewindow.onerror=ignore;
	if (!makewindow.opener){makewindow.opener = self;}
}
//self.onerror=ignore;