// --- hide from browser ---

// ---  image mouseovers  -----------

// Detect browser 
function Is() {
    var agent = navigator.userAgent.toLowerCase();
    this.major = parseInt(navigator.appVersion);
    this.minor = parseFloat(navigator.appVersion);
    this.ns  = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
    this.ns2 = (this.ns && (this.major == 3));
    this.ns3 = (this.ns && (this.major == 3));
    this.ns4 = (this.ns && (this.major >= 4));
    this.ie   = (agent.indexOf("msie") != -1);
    this.ie3  = (this.ie && (this.major == 2));
    this.ie4  = (this.ie && (this.major >= 4));
    this.op3 = (agent.indexOf("opera") != -1);
}

var is = new Is();

// Create image objects, preload all active and inactive images.
    if(is.ns3 || is.op3 || is.ie4 || is.ns4) { 
    img1on = new Image();
      img1on.src = "images/bharmony.gif";
    img2on = new Image();
      img2on.src = "images/bsymphony.gif";
    img3on = new Image();
      img3on.src = "images/bserenity.gif";
    
        
    img1off = new Image();
      img1off.src = "images/bharmony.gif";
    img2off = new Image();
      img2off.src = "images/bsymphony.gif";
    img3off = new Image();
      img3off.src = "images/bserenity.gif";
   }

// Function to "activate" images.
function imgAct(imgName) {
    if(is.ns3 || is.op3 || is.ie4 || is.ns4) {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if(is.ns3 || is.op3 || is.ie4 || is.ns4) {
    document[imgName].src = eval(imgName + "off.src");
    }
}

// -->


<!---hide from browser

function dater()
{
	//set variables
	today = new Date()
	wkday = today.getDay()
	month = today.getMonth()
        year = today.getYear();
		if (year < 2000) {
		year += 1900;
	}
	//print weekday
	{
	if ((wkday)==0) {document.write("Sunday, ")};
	if ((wkday)==1) {document.write("Monday, ")};
	if ((wkday)==2) {document.write("Tuesday, ")};
	if ((wkday)==3) {document.write("Wednesday, ")};
	if ((wkday)==4) {document.write("Thursday, ")};
	if ((wkday)==5) {document.write("Friday, ")};
	if ((wkday)==6) {document.write("Saturday, ")};

	//print month
	if ((month)==0) {document.write("January ")};
	if ((month)==1) {document.write("February ")};
	if ((month)==2) {document.write("March ")};
	if ((month)==3) {document.write("April ")};
	if ((month)==4) {document.write("May ")};
	if ((month)==5) {document.write("June ")};
	if ((month)==6) {document.write("July ")};
	if ((month)==7) {document.write("August ")};
	if ((month)==8) {document.write("September ")};
	if ((month)==9) {document.write("October ")};
	if ((month)==10) {document.write("November ")};
	if ((month)==11) {document.write("December ")};

	//print date and year
	document.write(today.getDate(),",   ",year) ; 
	}
}

 

 
// -->



function openWin(url, name) 
{
popupWin = window.open(url, name, "width=502,height=335,left=0,right=0,toolbar=no,scrollbars=no,resizable=no");
}
function openWin1(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=350,height=390,left=0,right=0,toolbar=no,scrollbars=yes,resizable=no");
	} else {
	popupWin = window.open(url, name, "width=350,height=390,left=0,right=0,toolbar=no,scrollbars=yes,resizable=no");
	}
}

function openWin2(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=570,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=570,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}
function openWin3(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=525,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=525,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}
function openWin4(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=700,height=500,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=700,height=500,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}
function openWin5(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=800,height=600,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=800,height=600,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}



<!--
//var allcookies = document.cookie;
//var pos = allcookies.indexOf("Specials=1");
//alert(pos)
//if (pos == -1)
//{
//	openWin('specials.html', 'specials') 
//}

//-->
