
<!--

function PopoffWindow(DaURL, orient) {

	var ItsTheWindow;
	var windowX = (screen.width/2)-(windowW/2);
  	var windowY = (screen.height/2)-(windowH/2);
  	var windowW=365 // wide
	var windowH=200 // high

		if (orient == "Horizontal")  {
			ItsTheWindow = window.open(DaURL,"himom","status,height=200,width=365,scroller=no,resizable=no,toolbar=0 screenX=365, screenY=200, left=365, top=200" );
			//ItsTheWindow.moveTo(windowX,windowY)
			//ItsTheWindow = window.moveTo(windowX,windowY)
			
		} else if (orient == "Vertical")  {
		    ItsTheWindow = window.open(DaURL,"himom","status,height=400,width=580,resizable=no,toolbar=0");
		   // ItsTheWindow = window.moveTo(windowX,windowY)
		}




}


//-->

