// JavaScript Document

function password() 
	{
	Ret = prompt('Type the password provided to you.',"");
		if(Ret=="APC-allstars") 	//this line specifies the password
		{
			window.location.assign('rates_menu.htm')
//		MM_openBrWindow('rates_menu.htm','','scrollbars=yes,resizable=yes,titlebar=yes,toolbar=yes,width=650,height=450,top=10,left=10')
		} 
	else 
		{
		alert("Please call Anderson Pollution Control at 936-441-2225 for a current password.")
		} 
	} 