function message()
	{
	defaultStatus = "Welcome To Pagliacci's Home of The World Famous Minestrone Soup" ;
	}
	
function A_message()
	{
	defaultStatus = "World Famous Minestrone Soup To Go $6.95 Per Quart" ;
	}	
	
function B_message(n)
	{
	var spaces = "                                                                                                    ";
	var text = "Complete Menue Available To Go!!!! Call 303-458-0530 To Order .... Minestorone Soup To Go $6.95 A Quart ....";
	var scrolling_text = spaces + text;
	scrolling_text = scrolling_text.substring(n,scrolling_text.length);
	window.defaultStatus = scrolling_text;
	if(scrolling_text.length > 0) n ++;
	else n = 0;
	s = n;
	n = setTimeout("B_message(s)", 100);
	}
	

function Blank_TextField_Validator(form)
	{
	if (form.u_Name.value == "")
		{
		alert("Please fill in the Name field.");
		form.u_Name.focus();
		return (false);
		}
	if (form.u_Email.value == "")
		{
		alert("Please fill in the E-Mail field.");
		form.u_Email.focus();
		return (false);
		}
	if (form.u_DateVisited.value == "")
		{
		alert("Please fill in the Date Visited field.");
		form.u_DateVisited.focus();
		return (false);
		}
	if (form.u_PartySize.value == "")
		{
		alert("Please fill in the Party Size field.");
		form.u_PartySize.focus();
		return (false);
		}
	if (form.u_Comments.value == "")
		{
		alert("Please fill in the Review field.");
		form.u_Comments.focus();
		return (false);
		}
	return (true);
	}
	
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);	


function openWin(theURL,winName,features) 
	{
  	window.open(theURL,winName,features);
	}
