function Validator(theForm)
{
	var error = ""; 

	if (theForm.password.value != "RFM1")
	{
		error += "Access Denied - You entered the incorrect password. Please note: This password is case sensitive.";
	} 
	if (error != "")
    {
       alert(error);
       return (false);
    } else {
       return (true);
    }
 }
function place(theform){
	var  location = "http://www.rfmseating.com/pricer/2010_RFM_Pricer_web.pdf";
	window.open(location);
}
