// JavaScript Document
function popup(urlowP,ox,oy)
	{                       
	var width = ox;
	var height = oy;
	var winx = (screen.width / 2)-(ox / 2);
	var winy = (screen.height / 2)-(oy / 2);     
	//imgURL      
	var hWnd = window.open(urlowP,"Video",'height='+height+'-10,width='+width+',top='+winy+',left='+winx+',scrollbars=no');
	//alert(ox);
	/*
		//newwindow2=window.open('','name','height=200,width=150');
		var hWnd = window.open('',"Popup",'height='+oy+'-10,width='+ox+',top='+winy+',left='+winx+', scrollbars=no');
		var tmp = hWnd.document;
		tmp.write('<html><head><title>Popup</title>');
		//tmp.write('<link rel="stylesheet" href="js.css">');
		tmp.write('</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
		tmp.write("<img src='"+urlowP+"'></img>");
		tmp.write('</body></html>');
		tmp.close();
	*/
		
	}	