function open_window (theURL,winName,winWidth,winHeight,features){
  		myWindow=window.open(theURL,winName,features );
		myWindow.moveTo(((screen.width/2)-(winWidth/2)),((screen.height/2)-(winHeight/2)-50));
		myWindow.focus();
}