﻿/*
 *   Print Article Content
 */
 
function PrintArticleContent(articleID) {
    var articleContent = document.getElementById(articleID);    
    var PrintWindow = window.open('','','left=0,top=0,width=550,height=300,toolbar=0,scrollbars=0,status=0,resizable=1');
    PrintWindow.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> ");
    PrintWindow.document.writeln("<html><head><title>Printing Article from " + siteName + " website<\/title> ");
    PrintWindow.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"> ");
    PrintWindow.document.writeln("<link href=\"" + siteURL + "App_Themes/Print/Print.css\" rel=\"stylesheet\" type=\"text/css\" /> ");
    PrintWindow.document.writeln("<\/head><body> ");
    PrintWindow.document.writeln(siteHeader + "<hr \/>");
    PrintWindow.document.writeln(articleContent.innerHTML);
    PrintWindow.document.writeln("<\/body><\/html> ");    
    PrintWindow.document.close();
    PrintWindow.focus();
    PrintWindow.print();
    PrintWindow.close();
}

function temp(panelID) {
    var panel = document.getElementById(panelID);    
}