// JavaScript Document

function validatePassword()
{
var pwd1 = "001";
var pwd2 = "002";

if(document.getElementById('txtbox1').value == pwd1 || document.getElementById('txtbox1').value == pwd2)
{
       //Type some code that u want to do if true
window.location="http://www.metareports.net/pay_discounted.html";
}
else
{
       alert("Wrong Code. Please, Enter Correct Code.");
}

}

