<!--
function selectIt(loc){
	switch(loc){
		case "hend":
			document.reserve.location[1].selected = true;
			break;
		case "nshack":
			document.reserve.location[2].selected = true;
			break;
	}
	document.reserve.fname.focus();
}
var str = location.search.substring(1, location.search.length);
var u = str.split('=');
selectIt(u[1]);

function otherStatus()
{
	var frm = document.reserve.howFound;
	if (frm[frm.selectedIndex].text == "Other")
		show('other');
	else
		hide('other');
		
	if (frm[frm.selectedIndex].text == "Referred by a Friend")
		show('friend');
	else
		hide('friend');
}


var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && (bVer >= 4 && bVer < 5));
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
var NS3 = (bName == "Netscape" && bVer < 4);
var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
var N6 = (bName == "Netscape" && bVer >= 5);

if (NS4 || IE4 || IE5) {
   if (navigator.appName == "Netscape"){
      layerStyleRef="layer.";
      layerRef="document.layers";
      styleSwitch="";
   }else {
      layerStyleRef="layer.style.";
      layerRef="document.all";
      styleSwitch=".style";
   }
}

function show(layerName){
   if (IE4) { 
     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.display="block"');
   }	
   if (N6){
   		document.getElementById([layerName]).style.display = "block";
   }
   else{}
}

function hide(layerName){
   if (IE4) { 
     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.display="none"');
   }	
   if (N6){
   		document.getElementById([layerName]).style.display = "none";
   }
   else{}
}

function pop(page){

var sProperties = "";
sProperties += "resizable,scrollbars=1,width=300,height=200,";
sProperties += "status=0,menubar=1,location=1,toolbar=0,screenX=0,";
sProperties += "screenY=0,left=50,top=50";

SendWindow = window.open(page,"SendWindow",sProperties);
SendWindow.focus(); }

function pop2(page){

var sProperties = "";
sProperties += "resizable,scrollbars=1,width=400,height=400,";
sProperties += "status=0,menubar=1,location=0,toolbar=0,screenX=0,";
sProperties += "screenY=0,left=50,top=50";

SendWindow = window.open(page,"SendWindow",sProperties);
SendWindow.focus(); }

function PopUp (page)
{   
    var link = "" + window.location;
    var sProperties = "";
    page += "?url=" + escape (link);
    
    sProperties += "scrollbars=0,";
    sProperties += "width=210,";
    sProperties += "height=230,";
    sProperties += "status=0,";
    sProperties += "menubar=0,";
    sProperties += "location=0,";
    sProperties += "toolbar=0,";
	sProperties += "dependent=1";

    
    cal = window.open (page,"cal",sProperties);
    cal.focus ();
        
    return false;
}

//-->