var PrintWin;
function winClose()
{
       PrintWin.close();
}
function PrintContent(obj)
{	

    PrintWin=window.open('','PrintWin','directories=no,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes,width=10,height=10,left=1050,top=800');
    PrintWin.document.write("<HTML>");
    PrintWin.document.write("<HEAD>");
    PrintWin.document.write("<TITLE>");
    PrintWin.document.write(document.title);
    PrintWin.document.write("</TITLE>");
    PrintWin.document.write("<link href='styles/styles.css' rel='stylesheet' media='print'>");
    PrintWin.document.write("</HEAD>");
    PrintWin.document.write("<BODY>");
    PrintWin.document.write(document.getElementById(obj.id).innerHTML);  
    PrintWin.document.write("</BODY>");
    PrintWin.document.write("</HTML>");
    PrintWin.location.reload(); 
    PrintWin.print();
    window.setTimeout('winClose()', 1000);
} 
function SendEmail()
{
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    alert(sPage);
     window.open ("sendemail.aspx?page=" + sPage,"mywindow","status=1");
    //window.open('','PrintWin','directories=no,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes,width=10,height=10,left=1050,top=800');
    window.location.href = "sendemail.aspx?page=" + sPage;
    return false;
}
