 function openmypage()
 {
 window.open ("../../live.html","openmypage","width=350,height=310,location=0,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0,screenX=500,right=50,screenY=30,top=50");
 }
sfHover = function() {
	if (!document.getElementsByTagName) return false;
	var sfEls = 1;

	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

