function checkpwd(data) {
	if (data.strPassword.value=="pmd008")
{
		var tempDate = new Date();
		tempDate.setMinutes(tempDate.getMinutes() + 30);
		document.cookie = "CookieMonster=king;expires=" + tempDate.toGMTString();

		window.open("resources_prices.html","","");
}
	else
		alert("Password Incorrect");
}


