<SCRIPT LANGUAGE="JavaScript">

<!-- Begin

function password()
 {
var testV = 1;
var pass1 = prompt('Please Enter Your Password','');
while (testV < 3) 
	{
	if (!pass1) 
		{
		history.go(-1);
		}
		if (pass1 == "pie2422")
 			{
			alert('You Got it Right!');

			window.open("download.html");
			break;
			} 
	
	testV+=1;
	var pass1 = prompt('Access Denied - Password Incorrect, Please Try Again.','Enter Password Here');
	}
if (pass1 == "pie2422")
	{
 		alert('You Got it Right!');
		window.open("download.html");
		return" ";
	}	 

if (pass1!="pie2422" & testV ==3) 
	{
	history.go(-1);
	}
	return " ";
}

// End -->
</SCRIPT>

