function open_diplom(file, x, y)
{
    if (!file) return false;
    if (!x) x=500;
    if (!y) y=500;

    var html ='<html>\n<head>\n<title>Диплом</title>\n<style type="text/css">\nbody {margin:0;padding:0;}\n</style>\n</head>\n</html>\n<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">\n<img src="'+file+'" border="0" alt="Габаритные размеры"></body>\n</html>';

    if ( popwin=window.open("/empty.html","_blank",'width='+x+',height='+y+',status=1,scrollbars=0,center=1') ) {

        popwin.document.open();
        popwin.document.write(html);
        popwin.document.close();
        popwin.focus();
        return true;
    }

    return false;
}

function open_gabarit(file, x, y)
{
    if (!file) return false;
    if (!x) x=500;
    if (!y) y=500;

    var html ='<html>\n<head>\n<title>Габаритные размеры</title>\n<style type="text/css">\nbody {margin:0;padding:0;}\n</style>\n</head>\n</html>\n<body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">\n<img src="'+file+'" border="0" alt="Габаритные размеры"></body>\n</html>';

    if ( popwin=window.open("/empty.html","_blank",'width='+x+',height='+y+',status=1,scrollbars=0,center=1') ) {

        popwin.document.open();
        popwin.document.write(html);
        popwin.document.close();
        popwin.focus();
        return true;
    }

    return false;
}

