// JavaScript Document

     
 function wOpnrStandard(myURL,myName,myWidth,myHeight,myFixed) {

	myString = "location=" + myFixed + ",scrollbars=" + myFixed + ",resizable=" + myFixed + ",width=" + myWidth + ",height=" + myHeight, "status=1";
	var earth = window.open(myURL, myName, myString);
	earth.opener.name = "stage";
	
	//return earth;
}

function wOpnr(myURL, myName, w, h, myFixed) {

w = 785;
h = 590;
var viewimageWin = window.open(myURL,myName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=Yes,resizable=no,copyhistory=no,width='+w+',height='+h);

viewimageWin.moveTo(screen.availWidth/2-(w/2),screen.availHeight/2-(h/2));

}



