// JavaScript Code for Opening a Pop-Up window

function popup(Page) {
	 window.open(Page,"pop","toolbar=no,resizable=yes,scrollbars,left=150,top=50,screenX=150,screenY=50,height=550,width=620");
     }

// End