
function OpenWindowName(sUrl, sName, width, height){
	newwindow=window.open(sUrl,sName,"scrollbars=yes,menubar=no,resizable=yes, width=" + width + ", height="+ height);
	newwindow.focus();
}