// JavaScript Document


function validate() {

 //-----------------------------------------------------
	if (document.fpcast.lname.value.length == 0 ) {
		alert ("Please enter a Login.")
		document.fpcast.lname.focus();
		return false;
	 }  
	 
	  if (document.fpcast.pname.value.length == 0) {
		alert ("Please enter a Password.")
		document.fpcast.lname.focus();
		return false;
	 }  
	 
	 if (!(document.fpcast.lname.value == "FWedge")){
		window.location = "wrongpassword.html";
		return false;
	 } else if (!(document.fpcast.pname.value == "podcast08")) {
		window.location = "wrongpassword.html";
		return false;
	 } else {
		window.location = "http://www.flyingwedge.com/podcast/downloads.html";
		return false;
	 }
		return true;
}

/*function okgo() {
	validate();	
	if (x = true) {
		window.location = "downloads.html";
		alert(x);
	} else if (x = false){
		window.location = "wrongpassword.html";
		alert(x);
	}
	
}*/
