﻿function PrintDiv(PrintArea) {

    var disp_setting = "toolbar=yes,location=no,directories=yes,menubar=no,";
    disp_setting += "scrollbars=yes,width=750, height=750";
    var content_vlue = document.getElementById(PrintArea).innerHTML;
    var docprint = window.open("", "", disp_setting);
    docprint.document.open();
    docprint.document.write('<html><head>');
    docprint.document.write('<link href="../../../App_Themes/Front/Style.css" rel="stylesheet" type="text/css"  />');
    docprint.document.write('</head><body onLoad="self.print()" >');
    docprint.document.write('<center><img  src=../../images/LogoEn.gif  /><br/></center>'); 



    docprint.document.write(content_vlue);
    //docprint.document.write("<br/><br/>");
    docprint.document.write("</body></html>");
    docprint.document.close();
    docprint.focus();

}

function TellaFriend() {
    window.showModalDialog("../../TellaFriend.aspx?CurrUrl=" + window.location.href, '', 'unadorned:yes;resizable:no;dialogWidth:500px;dialogHeight:330px;scroll:yes;status:no;');
}
