/******************************************************************************
* functions.js								      *
*                                                                             *
* Copyright 2006 by vikarta.com				      *
* Visit http://www.vikarta.com					      *
*                                                                             *
* Provides functions for the website which will work on both Netscape	      *
* Communicator and Internet Explorer browsers (version 5.5 and up).  	      *
*									      *
******************************************************************************/

//-----------------------------------------------------------------------------
// Login Courtesy Listing
//-----------------------------------------------------------------------------
function pasuser1() 
{
	if (document.FormLogin.pass.value=="vrp+websites" || document.FormLogin.pass.value=="owner")
	{              
		document.FormLogin.submit();
		return true;
	} 
	else 
	{
		alert("Please review the offer email for your password");
		return false;
	}
} 
