// JavaScript Document
 function Popup (popupURL,name,w,h) {
	LeftPosition=(screen.width)?(screen.width-w)/2:100;
  TopPosition=(screen.height)?(screen.height-h)/2:100;
	window.open (popupURL,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h+',left='+LeftPosition+',top='+TopPosition);
	}