function bookmark() {
	var a = navigator.appVersion;
	var b = a.toString();
	if (navigator.appName=="Netscape") {
     alert('To bookmark this site, click Bookmarks -> Add bookmark, or press Ctrl+D');
  } else if (parseInt(b.substring(1))>3) {
    window.external.AddFavorite('http://www.bonniesbedroom.ca','Bonnies Bedroom!');
  }
}
function samechecker() {
	if (document.form1.sameasabove.checked) {
	  document.form1.sfirstname.value	= document.form1.firstname.value;
	  document.form1.slastname.value	= document.form1.lastname.value;
	  document.form1.saddress.value	= document.form1.address.value;
	  document.form1.scity.value	= document.form1.city.value;
	  document.form1.sstate.selectedIndex	= document.form1.state.selectedIndex;
	  document.form1.spostcode.value	= document.form1.postcode.value;
	  document.form1.scountry.selectedIndex	= document.form1.country.selectedIndex;
  }
  return true;
}