//Function for popupwindows
function popUpWindow(URL,width,height) {
	var windowprops = "height=" + height + ",width=" + width + ",location=no,"+ "scrollbars=yes,resizable=yes,screenX=70,screenY=10,top=70,left=10";
	popup = window.open(URL,"MenuPopup",windowprops);
	popup.focus();
	//popup.moveTo(0, 0);
}

//Function for popup new window
function popUpNewWindow(URL, windname,width,height) {
	var windowprops = "height=" + height + ",width=" + width + ",location=no,"+ "scrollbars=yes,resizable=yes,screenX=70,screenY=10,top=70,left=10";
	eval(windname +"= window.open(URL,'"+windname+"',windowprops)");
	eval(windname +".focus()");
	//popup.moveTo(0, 0);
}




