function img (url,w,h)
{
//поправка на отступ	
ww=parseInt(w)+40; 
hh=parseInt(h)+40; 
mywind=window.open('','','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+ww+',height='+hh+'');
mywind.document.write('<IMG SRC='+url+'>');
}

function openWin (url)
{
window.open(url,"","width=400,height=200,toolbar=0,top=200,left=300,directories=0,status=0");return false;
}  

function clearmailform(elname) {
	elname.value="";
}

jsHover = function() {
var hEls = document.getElementById("pageServiceMenu").getElementsByTagName("LI");
for (var i=0, len=hEls.length; i<len; i++) {
hEls[i].onmouseover=function() { this.className+=" jshover"; }
hEls[i].onmouseout=function() { this.className=this.className.replace(" jshover", ""); }
}
}
if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);