// JavaScript Document


function stoperror(){
                return true;
}
window.onerror=stoperror

function Launch(page, width, height) { 
		OpenWin = this.open(page, "kirupa", "toolbar=no, menubar=no ,location=no, scrollbars=auto,status=no, resizable=no,fullscreen=no, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
	} 
	
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=420,height=320');");
}