function musicBrowser(page,bool){
	if(bool){

		openWin = "/cgi-bin/musicBrowser.cgi?page="+page
		props = "width=320,height=100,top=40,left=40"


		t=window.open(openWin,'musicwin',props)
		t.focus()

		}
	else{

		self.close()
	}
}


function navroll(wh,bo){

	eval("document.images[\""+wh+"\"].src = 'images/"+wh+bo+".gif'");
}

function writeCopyright(){

	d = new Date();
	yr = d.getFullYear();
	document.write("&copy;"+yr+" Bridal Secrets, Inc.. All rights reserved.<br>No part of the site may be reproduced without written permission.<br>Web design and maintenance by <a href=\"http://www.marcgottlieb.com\" class=smtext>Marc Gottlieb Creative Solutions</a><br><br>")
}

stars=['three','four','five'];


function checkForm()
{

f = document.contact
required = [f.fname,f.lname,f.email,f.phone]
error = ["your first name","your last name","your email address","your phone number"]
for(r=0;r<required.length;r++){

	if(required[r].value == ""){
	alert("Please enter "+error[r])
	required[r].focus()
	return false;
	}

	}
	return true;
}


function writeNav(){

//navEls = new Array("home","news","vtour","our_story","our_brides","secret_me","bridal_secrets_israel","bridal_secrets_lkwd","chuppah_rentals","hachnosas_kallah","wedding_tips","links","directions","contact_us")
navEls = new Array("home","news","our_story","our_brides","secret_me","bridal_secrets_israel","bridal_secrets_lkwd","chuppah_rentals","hachnosas_kallah","wedding_tips","links","directions","contact_us")

document.write("<table border=0 width=200><tr><td align=center>")
document.write("<a href='vtour.html'><img src='images/bs_vtour_graphic.png' border=0></a><br><br>");
//document.write("<a href='http://www.bridalsecretsonline.com'><img src='images/bs_samplesale.png' border=0></a><br><br>");

for(n=0;n<navEls.length;n++){

//alert(navEls[n]);
	navElURL=(navEls[n]=="home")?"index.html":navEls[n]+".html";

//	navElURL=(navEls[n]=="preserved")?"preserved.php":navEls[n]+".html";
	navEl = navEls[n]
	document.write("<a href=\""+navElURL+"\" onmouseover=\"navroll('nav_"+navEl+"','_lit')\" onmouseout=\"navroll('nav_"+navEl+"','')\"><img src=\"images/nav_"+navEl+".gif\" name=\"nav_"+navEl+"\" border=0 vspace=6></a><br>")
	document.write("<img src=\"images/nav_separator.gif\" border=0 vspace=5><br>")
}

document.write("</td></tr><tr>	<td align=center><a href=\"javascript:musicBrowser('home',1)\"><img src=\"images/button_music.gif\" border=0></a></td></tr></table>");
}

