// JavaScript Document


function popup(url){
		 larg=430; 
		 alt=430; 
		 toptop=(screen.height/2)-(alt/2); 
		 leftleft=(screen.width/2)-(larg/2); 
		 newWin = window.open(url, "new", "scroll=no, toolbar=no, width=" + larg + ", height=" + alt + ", left=" + leftleft + ", top=" + toptop);
}


