﻿var PRINT_FRAME_ID="printContainer";
var HOLDER_ID="divHolder"
function PrintContent(title, link)
{
    var strContent=document.getElementById(HOLDER_ID).innerHTML;
    var printframe=document.getElementById(PRINT_FRAME_ID);
    printframe.width=1;
    printframe.height=1;
    printframe.border=0;
    printframe.style.display='block';
    printframe.style.visibility='visible';
    printframe.contentWindow.SetContent(strContent);
    printframe.contentWindow.focus();
    printframe.contentWindow.PrintMe(title, link, window);
    return;
}

function HidePrintFrame()
{
  var printframe=document.getElementById(PRINT_FRAME_ID);
  printframe.contentWindow.SetContent('');
  printframe.style.display='none';
  printframe.style.visibility='hidden';
}

function PrintWindow()
{
  window.setTimeout('window.print()',50);
  return;
}

function ShowEmailForm(path, width, height)
{
  var top=(screen.availHeight-height)/2;
  var left=(screen.availWidth-width)/2;
  window.open(path+'/Emaillink.aspx?url='+encodeURI(window.location),
    'emailLink','height='+height+',width='+width+',top='+top+',left='+left+',resizable=yes,scrollbars=yes');
  return(false);
}