// Popup Javascripts

	
function showPopupMap(url) 	
{     
     mapwindow=window.open(url,'name','height=600,width=700,top=100,left=-1,resizable=1,location=0, menubar=0, status=0'); 
     if (window.focus) {mapwindow.focus()} 
     mapwindow.moveTo(100,100);
} 

function showPopupLogin(url) 	
{     
     loginwindow=window.open(url,'name','height=425,width=775,top=220,left=-1,resizable=1,location=0, menubar=0, status=0'); 
     if (window.focus) {loginwindow.focus()} 
     loginwindow.moveTo(100,100);
} 