var g_fs;

function g_mediaWrite(s)
{
	document.write(s);	
}

function gO(s){
	return document.getElementById(s);	
}

function doSearchMokal(e, o){
	if(!e.which){
		theKey = e.keyCode;
	}else{
		theKey = e.which;
	}
	if(theKey==13){
		if (e && e.preventDefault){
			e.preventDefault();
		}else{
			e.returnValue = false;
		}
		location.href = "http://www.google.com/search?q=site:www.mokal.com+" + o.value + "&qfront=" + o.value;
	}	
}