﻿function kampanya_detay(kampanya_baslik,resim_yolu)
{
    var i = new Image;
    i.src = resim_yolu;
//    alert(i.height);
//    alert(i.width);
    w = window.open('about:blank','kampanya','height=150,width=150,scrollbars=1');
    w.document.write('<html><head><base href="http://www.yuvamaya.com.tr/"/><style>body{margin:0;}</style><title>' + kampanya_baslik + '</title></head><body>');
    w.document.write('<img border="0" src="' + resim_yolu + '" alt=""/>');
    //w.document.write('http://www.yuvamaya.com.tr/' + resim_yolu);
    w.document.write('</body></html>');
    w.document.close();
    w.moveTo(0,0);
    w.resizeTo(i.width + 20,i.height);
    return false;
}