function show(id){
	if (document.layers) document.layers[''+id+''].visibility = "show"
	else if (document.all) document.all[''+id+''].style.visibility = "visible"
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}


function hide(id) {
	if (document.layers) document.layers[''+id+''].visibility = "hide"
	else if (document.all) document.all[''+id+''].style.visibility = "hidden"
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"				
}


function pop(arg) {
	winSiteMap=window.open(arg,"","width=142,height=20,left=25,top=25,scrollbars=no,menubar=no,resizable=no;location=no");
}
function closeme(){
	window.close();
}


/* contains error
function validateForm(formname) {
//validate


	if(!(TextFieldVal(formname, "txtUserName"))) {
			alert("GOTTA be an affiliate to login; if you are an affiliate, you need to enter your username.")
			return false;
	}			

	if(!(TextFieldVal(formname, "txtUserPass"))) {
			alert("You must enter a Password to login.")
			return false;
	}			
	

//passed val
return true;


}
*/

function validateForm(formname)	{
	var f=document.forms[formname];
	if (f.txtUserName.value=="")	{
		alert("GOTTA be an affiliate to login; if you are an affiliate, you need to enter your username.")
		return false;
	}
	if (f.txtUserPass.value=="")	{
		alert("You must enter a Password to login.")
		return false;
	}
}
