var ns6=document.getElementById&&!document.all;
var opera=navigator.userAgent.indexOf("Opera")>=0;
var eventObj = (document.all) ? "window.event.srcElement" : "event.target";

if (ns6) document.captureEvents(Event.KEYDOWN);


function getKey(evt) {
	if (evt && ns6)
		typedKey=evt.which;
	else
		typedKey=event.keyCode;    

	if (typedKey == 13) {
		if(document.all) {
			window.event.cancelBubble='true';
		    window.event.returnValue = false;
		} else {
			evt.stopPropagation();
		    evt.preventDefault();
		}
		document.getElementById("searchBtn").click();
	 }
}

function setSearch() 
{
	document.getElementById('MainForm').action ='/search.aspx?search=' + encodeURI(document.getElementById("searchbox").value);
	document.getElementById('MainForm').submit();
}


function visStortWindow(SitecoreID, width, height)
{
	var visStortWin = window.open("/Global/ShowImage.aspx?id="+ SitecoreID, '', "resizable=no,scrollbars=no,status=no,statusbar=no,titlebar=no,left=25,top=0,height="+ height +",width="+ width);
	visStortWin.focus();
}

function goback() {
    history.go(-1);
}
