window.onerror = errorHandler;

function errorHandler(){
	return true;
}

function popupWindow(theUrl, width, height, name)
{
	theoptions = "width="+ width + ", height=" + height;
	theWin = window.open(theUrl,name,theoptions);
	
}


