function popimage(imagesrc,windowWidth,windowHeight){
	var look = 'width=' + windowWidth + ',height=' + windowHeight + ',scrollbars=1';
	popwin=window.open("","",look );
	popwin.document.open();
	popwin.document.write("<html>");
	popwin.document.write("<head>");
	popwin.document.write("<title></title>");
	popwin.document.write("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>");
	popwin.document.write("</head>");
	popwin.document.write("<body onLoad=\"window.moveTo(5,5);\" style=margin:0;padding:2px;background-color:#fff;>");
	popwin.document.write('<div align=center>' + '<img src="'+imagesrc+'">' + '</div>');
	popwin.document.write("</body>");
	popwin.document.write("</html>");
	popwin.document.close();
}

function popupNew(url,w,h,s)
{
	var features = "width=" + w + ",height=" + h + ",status=no,scrollbars=" + s + ",left=10,top=10,screenX=10,screenY=10";
	var win = window.open("" + url + "", "", features);
}