function new_win(w,h,name)
{
	w1=window.open('',name,'resizable=no,menubar=no,top=350,left=350,status=no,scrollbars=no,width='+w+',height='+h);
if (useImages == "1")
{
	w1.focus();
}
}

function winop(imgurl, width, height)
{
    title = "Рекомендации наших Клиентов";
    im = window.open('', 'win','top=40,left=40,width='+width+',height='+height+', scrollbars=no, menu=no,status=no,resizable=no');
    im.focus();
    im.document.open ("text/html");
    im.document.write ('<html><title>'+title+'</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff><table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td align=center><img src='+imgurl+' width='+width+' height='+height+'></td></tr></table></body></html>');
    im.document.close ();
}