function PopUp(url, winname, w, h) {
	s = screen;	
	win = window.open('',winname,'width='+w+',height='+h +',scrollbars=auto');	
	win.document.writeln('<html>');
	win.document.writeln('<head>');
	win.document.writeln('<title>ExpressMetall.ru</title>');
	win.document.writeln('<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">');
	win.document.writeln('<A href="javascript:window.close()"><img src='+ url + ' border=0></a>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.focus(); 
	win.moveTo(Math.ceil(s.width/2 - w/2),Math.ceil(s.height/2 - h/2 - 20));
	return false;
}

function SHmenu(n){
	if(!document.all[n]) return false; 
	if(document.all[n].style["display"] == "none"){
		document.all[n].style["display"] = "";
	}else{
		document.all[n].style["display"] = "none";
	}
	return false;
}


/**********************************************************************************
*
* запрет на правый клик
* 
**********************************************************************************/
function noLeftClick() {
if (event.button==2) {
alert('Copyright (c) 2006 «Express Металл» Все права защищены')
}}
document.onmousedown=noLeftClick
