﻿
function MenuRollover(Obj, className){
    if (Obj)
        Obj.className = className;
}

var isIE = (navigator.appName.indexOf("Microsoft")!= -1 ) ? 1:0;

function catchSearch (evt,id){
	e = (isIE)? (window.event):(evt);
	if(e.keyCode==13){
		
		//if (document.forms[0]){document.forms[0].onsubmit = function(){return false};}
		//alert ($(id).click)
		$(id).click();
		
		if (e.cancelBubble) e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();
		if (e.returnValue) e.returnValue = false;
		if (e.cancel) e.cancel = false;

		return false;
	}
}

function goToUrl(url){
	location.href = url;
}


