function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function popup(mylink, specials)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, specials, 'width=400,height=200,scrollbars=yes');
return false;
}

function openImage(images, w, h)
{
	var windowprops = "location=no,scrollbars=no,menubar=no,toolbar=no" + ",left=50,top=0" + ",width=" + w + ",height=" + h + ";"
	a = window.open("","popupimage",windowprops);
	a.focus();
	a.document.open();
	a.document.write("<html><head><title>Chantal's Bridal &amp; Formal</title></head><body style='margin:0;'>");
	a.document.write("<a href='javascript:window.close()' onMouseOver=\"status='Click to close'; return true\" onMouseOut=\"status='';return true\"><image src='" + images + "' width=" + w + " height=" + h + " border='0' alt='Click to close' title='Click to close' galleryimg='no'></a>");
	a.document.write('</body></html>');
	a.document.close();
}

function goThere(form){
	var linkList=form.selectThis.selectedIndex
	if(!linkList==""){window.location.href=form.selectThis.options[linkList].value;}
}