// JavaScript Document

<!-- Begin
function OpenSignup(page)
{
	var strName;
	var strUrl;
	strUrl = page;
	
	var mywin;
	var intVersion;
	var intHeight, intWidth;
	intHeight = 410;
	intWidth = 400;
			
	strProperties = "scrollbars=yes,resizable=yes,menubar=no,location=no,directories=no,toolbar=no";
	strProperties = "status=yes,height=" + intHeight + ",width=" + intWidth + "," + strProperties;

	strName = '';
	mywin = window.open(strUrl, strName, strProperties);
	mywin.name = strName;
	if (mywin.opener == null) mywin.opener = self;
	
}
// End -->
