function new_win(isrc){
mwin=window.open('','new_window','width=300,height=300,scrolling=no,resizable=no,top=30,left=15');
mwin.document.open();
mwin.document.write("<html><title>МаксиТехГруп</title><meta HTTP-EQUIV='Content-Type' content='text/html; charset=windows-1251'><body style='margin:0px;padding:0px;'>");
mwin.document.write("<a href='#' onclick='window.close(); return false'><img src=docs/max/max"+isrc+".jpg border=0 onload='window.resizeTo(this.width+10,this.height+35)' alt='Закрыть окно'></a></body></html>");
mwin.onload=mwin.focus;
mwin.focus();
}

function new_win2(url,w,h){
	if(nw!=null && !nw.closed) nw.close();
	var nw=window.open(url,'new_window','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h+',top=10,left=10');
	nw.focus();
return false;
}

function new_win3(url,w,h){
	if(nw!=null && !nw.closed) nw.close();
	var nw=window.open(url,'new_window','resizable=no,menubar=yes,status=no,scrollbars=yes,width='+w+',height='+h+',top=30,left=30');
	nw.focus();
return false;
}
