// JavaScript Document
if (document.images){    
moreoff = new Image(); 
moreoff.src = "../images/more.gif";
moreover = new Image(); 
moreover.src = "../images/more_over.gif";
homeoff = new Image(); 
homeoff.src = "../images/home.gif";
homeover = new Image(); 
homeover.src = "../images/home_over.gif";
reserveoff = new Image(); 
reserveoff.src = "../images/reserve.gif";
reserveover = new Image(); 
reserveover.src = "../images/reserve_over.gif";
emailoff = new Image(); 
emailoff.src = "../images/email.gif";
emailover = new Image(); 
emailover.src = "../images/email_over.gif";
}
function rollOver(which){
	if(document.images){
		document.images[which].src = eval(which + 'over.src');
	}
}
function rollOut(which){
	if(document.images){
		document.images[which].src = eval(which + 'off.src');
	}
}

function addToFavorites()
{ 
if (window.sidebar) {alert("Sorry! Your browser doesn't support this function.\nPress Ctrl+D to add site to bookmark list."); return;}
if (window.external) { window.external.AddFavorite(document.location.href + "?WT.cg_n=bookmarkreturn",document.title); return;}
else  { alert("Sorry! Your browser doesn't support this function.\nPress Ctrl+D to add site to bookmark list."); } }

function generate_address( un, hn, sty, lnk ) {
        var atsign = "&#64;";
        var addr = un + atsign + hn;
        if(!lnk)
		{ document.write( 
          "<" + "a" + " class=" + sty + " href=" + "mail" + "to:" + addr + ">" +
          addr + "</a>");      }
		else {
		document.write( 
          "<" + "a" + " class=" + sty + " href=" + "mail" + "to:" + addr + ">" +
          lnk + "</a>");  }
}
// Send to a Friend
function stfpop(url) {
emailWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=560,height=550');
self.name = "mainWin"; }