// JavaScript Document
function popUp(file,winWidth,winHeight){
popup=window.open(file,"popUp","width=" + winWidth + ",height=" + winHeight + ",resizable=no,scrollbars=yes");}

function viewFullImg(file,width,height,title){
popup=window.open(file,title,"width=" & width & ",height=" & height & ",resizable=no,scrollbars=no");}
//popup.document.write("<html><head><title>Email Confirmation</title></head><body bgcolor='#00008C' text='#FFFFFF' leftmargin='2' topmargin='2' rightmargin='2' bottommargin='2'><table style='font-family:Arial;font-size:12px' width='200' height='200' border='0' cellpadding=' 0' cellspacing='0'><tr><td align='center'>" + docTitle + "</td></tr><tr><td><br><b>" + fname + "</b>,<br><br>Your e-mail has been sent; thank you for contacting Culinary Associates.  One of our representatives will reply to you at<p align='center'><b>" + email + "</b></p></td></tr><tr><td align='center'><br><form><input type='button' value='close' onClick='self.close()'></form></td></tr></table></body></html>");

function navSub(text){
if (text=="")
	document.getElementById("navSub").innerHTML="<font class='hint'>Place the mouse cursor over a navigation button to view a description</font>";
if (text=="home")
	document.getElementById("navSub").innerHTML="Our Home page is a great place to start! Check out the highlights of our Web site.";
if (text=="menu")
	document.getElementById("navSub").innerHTML="Peruse our menu and tempt your taste-buds with soul-satisfying artistic gourmets.";
if (text=="reserve")
	document.getElementById("navSub").innerHTML="Book your event online, today.  It's fast, easy and convenient!";
if (text=="client")
	document.getElementById("navSub").innerHTML="We are dedicated to providing excellent customer service. Need proof? Here's some of our satisfied clients.";
if (text=="photo")
	document.getElementById("navSub").innerHTML="Seeing is believing. Take a look at snapshots from recent events.";
if (text=="contact")
	document.getElementById("navSub").innerHTML="Have questions ... need help? Send us an E-mail directly from our site and we'll respond ASAP.";
if (text=="pay")
	document.getElementById("navSub").innerHTML="Make a secure online payment. It's safe, fast, and convenient!";
}

function photoViewer(file,caption){
top.document.getElementById("photoViewer").src=file;
top.document.getElementById("photoCaption").innerHTML=caption;
}

var audState=1
function toggleAud(audFile) {
	if (audState==1) {
		document.getElementById("aud").src="";
		//document.getElementById("sndPrompt").innerHTML="Turn Music On";
		audState=0;
	}
	else if (audState==0) {
		document.getElementById("aud").src=audFile;
		//document.getElementById("sndPrompt").innerHTML="Turn Music On/Off";
		audState=1;
	}
}
