// JavaScript Document
sfHover = function() {
	if (document.getElementById!=null){
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	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);




function showHidePro(id) {
	if(document.getElementById) {
		var obj = document.getElementById(id);
		if (obj.style.display == 'block') {
			 	obj.style.display='none';
		 	} else {
				obj.style.display='block';
		}
	}
}

function openWindow() {
	window.open("","ow",'toolbar=0,location=0,menubar=0,scrollbars=0,width=497,height=835,resizable=0,top=30,left=300');
} 

function openWindowPro(url,width,height)
    {
		window.open(url, "_blank","width=" + width + ",height=" + height + ",toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no,top=30,left=300")
	}
