<!--
function pop_win(url,w,h,win_name,scroll)
		{
		if(scroll)
			scroll = 'yes';
		else
			scroll = 'auto';
  		var left = (screen.width-w)/2;
  		var top= (screen.height-h)/2;
  		window.open(url,win_name,'resizable=yes,scrollbars='+scroll+',menubar=no,status=no,width='+w+',height='+h+',left='+left+',top='+top);
		}
//-->	

<!--
function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
//-->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

