
function basicNavMOv(id){
		getObj(id).style.background = 'yellow';
		getObj(id).style.filter = 'alpha(opacity=75)';
}

function basicNavMOu(id){
		getObj(id).style.background = '#aaffff';
		getObj(id).style.filter = 'alpha(opacity=50)';
}
	
function navHoverOn(id){
		getObj(id).style.backgroundColor="#aaeeff";
}

function navHoverOff(id){
		getObj(id).style.backgroundColor="#aaffff"
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function getObj(name)
{
        if (document.getElementById) {
                if (document.getElementById(name)) {
                        return document.getElementById(name);
                }
                else {
                        return document.getElementById('dummy');
                }
        }
        else if (document.all) {
                if (document.all[name]) {
                        return document.all[name];
                }
                else {
                        return document.all['dummy'];
                }
        }
        else {
                return;
        }
}

		function _pF() {
			var html = "<html><head><link rel=stylesheet type=text/css href=./styles/style.css></head><body>";
			html += "<table align=center width=100% cellspacing=0 cellpadding=0 border=0><tr>";
			html += "<td colspan=5 style=\"border-left: black solid 1px; border-top: black solid 1px;\" bgcolor=#FDCDFD align=left>";
			html += "<font size=+2>";
			html += "SkinSationS Day Spa - " + getObj('pF_title').innerHTML;
			html += "</font></td></tr>";
			html += getObj('pF').innerHTML;
			html += "</table>";
			html += "</body></html>";
//			window.alert(html);
			var printWin = window.open("");
			printWin.document.write(html);
			printWin.focus();
		}
//   ------------------------------------------------
/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: JTricks.com :: http://www.jtricks.com/ */



function move_box(an, box) {
  var cleft = 0;
  var ctop = 0;
  var obj = an;
  while (obj.offsetParent) {
    cleft += obj.offsetLeft;
    ctop += obj.offsetTop;
    obj = obj.offsetParent;
  }
  box.style.left = cleft + 'px';
  ctop += an.offsetHeight + 8;
  if (document.body.currentStyle &&
    document.body.currentStyle['marginTop']) {
    ctop += parseInt(
      document.body.currentStyle['marginTop']);
  }
  box.style.top = ctop + 'px';
}

function boxIt(an, href) {
return false;
  var boxdiv = getObj('boxDivID');
  if (boxdiv != null) {
    if (boxdiv.style.display!='none') {
      boxdiv.style.display='none';
    return false;
	}
  }
  boxdiv.style.display = 'block';
  boxdiv.innerHTML = href;
  move_box(an, boxdiv);
  return false;
}
