// JavaScript Document
<!-- hide from old browsers
 var OpenWin = null;
 function Popup(loc) {
	var intWidth,intHeight,intScWidth,intScHeight,intXPos,intYPos;
	var browserName=navigator.appName; 
	if (browserName=="Netscape")
	{ 
	intWidth = 622;
	intHeight = 446;
	}
	else 
	{ 
	intWidth = 640;
	intHeight = 448;
	}
	
	intScWidth = screen.availWidth;
	intScHeight = screen.availHeight;
	intXPos = ((intScWidth - intWidth) / 2);
	intYPos = ((intScHeight - intHeight) / 2);
	if (OpenWin != null) { // if the window has been created at some point
		if (OpenWin.closed) { // if the window has been closed 
			AdvInfoWin=null;
		}
		else {
			// close the window
			OpenWin.close();
			OpenWin=null;
		} // endif
	} // endif
	OpenWin=null;
	OpenWin=window.open(loc,"","toolbar=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=no,resizable=yes,width=" + intWidth + ",height=" + intHeight + ",screenX=" + intXPos + ",screenY=" + intYPos + ",left=" + intXPos + ",top=" + intYPos)
	OpenWin.focus();
	if (!OpenWin) { 
	//Catch the popup blocker 
	alert('Please disable your popup blocker!!'); 
	} 
}

 var OpenWin = null;
 function Popup_small(loc) {
	var intWidth,intHeight,intScWidth,intScHeight,intXPos,intYPos;
	intWidth = 620;
	intHeight = 360;
	intScWidth = screen.availWidth;
	intScHeight = screen.availHeight;
	intXPos = ((intScWidth - intWidth) / 2);
	intYPos = ((intScHeight - intHeight) / 2);
	if (OpenWin != null) { // if the window has been created at some point
		if (OpenWin.closed) { // if the window has been closed 
			AdvInfoWin=null;
		}
		else {
			// close the window<a href="open_profile_preview.js">open_profile_preview.js</a>
			OpenWin.close();
			OpenWin=null;
		} // endif
	} // endif
	OpenWin=null;
	OpenWin=window.open(loc,"","toolbar=0,width=" + intWidth + ",height=" + intHeight + ",screenX=" + intXPos + ",screenY=" + intYPos + ",left=" + intXPos + ",top=" + intYPos)
	OpenWin.focus();
}


//-->
