/* Search */

function mouseOver(el) {
  el.className='mouseover';
}

function mouseOut(el) {
  el.className='';
}

function mouseDown(el) {
  el.className='clicked';
}

function enterKeyPressed(e) {
  var key=(window.event ? window.event.keyCode : e.which);
  return (key==13);
}

function doSearch(id,url) {
	var txt=document.getElementById(id);
	if (txt.value.lastIndexOf('*') != txt.value.length-1) {
		txt.value+='*';
	}
	url=setURLParam(url,"search",txt.value);
	doSubmit("ewaysearch",url);
}


/* Other */

function preview(obj) { 
  window.open('/eway/library/forms/showmessage.aspx?oid='+obj+'\&fid=67\&dp=/eway/custom/design/bakers'+'&global_lang=NO','Forhåndsvisning','menubar=0,status=0,location=0,toolbar=0,resizable=1,scrollbars=1,height=730,width=680');
}
