
	function openURL(url, frameName, w, h, showMenubar, doResize, doScroll)
	{
		winopts = "height=" + h + ",width=" + w + "screenX=100,screenY=100,menubar=" + showMenubar + ",resizable=" + doResize + ",scrollbars=" + doScroll; 
		window.open(url, frameName, winopts); 
	
	}
