<!--
function OpenFlash(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
//-->

<!--
function OpenLogin(theURL,winName,features, myWidth, myHeight, isCenter) {
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
//-->


<!--
function OpenLegal(theURL,winName,features, myWidth, myHeight, isCenter) {
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
//-->


<!--
var strAlert;
var flag;

function validate(){ //uses form arrays to validate

if (document.forms[0].elements["Fname"].value=="") {
	strAlert = "Please Enter A First Name.  \n";
	flag = "yes";
	}

if (document.forms[0].elements["Lname"].value=="") {
	strAlert = strAlert + "Please Enter A Last Name.  \n";
	flag = "yes";
	}

if (document.forms[0].elements["Title"].value=="") {
	strAlert = strAlert + "Please Enter A Title.  \n";
	flag = "yes";
	}
	
if (document.forms[0].elements["BizName"].value=="") {
	strAlert = strAlert + "Please Enter A Business Name.  \n";
	flag = "yes";
	}
	
if (document.forms[0].elements["Country"].value=="") {
	strAlert = strAlert + "Please Enter A Country.  \n";
	flag = "yes";
	}
	
if (document.forms[0].elements["Phone"].value=="") {
	strAlert = strAlert + "Please Enter A Phone number.  \n";
	flag = "yes";
	}
	
if (document.forms[0].elements["Email"].value=="") {
	strAlert = strAlert + "Please Enter An Email Address.  \n";
	flag = "yes";
	}


if (flag == "yes"){	
	flag = "no"
	alert(strAlert);
	strAlert = "";
	return false;      
	}
	
	return true
}
//-->

