// JavaScript Document

function CopiarConteudoDIV_IE(texto)
{
  if (texto != "")
  {
    var div = document.createElement('div');
    div.style.display = "none";
    div.innerText = texto;
    document.body.appendChild(div);
    var range = document.body.createControlRange();
    range.add(div);
    range.select();
    if (document.selection.createRange().text != "") document.selection.createRange().execCommand('copy');
    range.remove(0);
    range.select();
    document.body.removeChild(div);
  }
  else
  {
    var range = document.body.createControlRange();
    div.contentEditable = "true";
    range.add(div);
    range.select();
    if (document.selection.createRange().text != "") document.selection.createRange().execCommand('copy');
    div.contentEditable = "false";
    range.remove(0);
    range.select();
  }
}

//   var selecao = window.getSelection();
//   
//   alert(selecao);
//   alert(selecao.toString());
//   
//   if (selecao.toString() != "")
//   {
//     selecao.getRangeAt(0).execCommand('copy');
//   }
//   else
//   {
//     var range = document.body.createControlRange();
//     div.contentEditable = "true";
//     range.add(div);
//     range.select();
//     if (document.selection.createRange().text != "") document.selection.createRange().execCommand('copy');
//     div.contentEditable = "false";
//     range.remove(0);
//     range.select();
//   }
//}


/*
function CopiarConteudoDIV_IE(div)
{
  if (document.selection.createRange().text != "")
  {
    document.selection.createRange().execCommand('copy');
  }
  else
  {
    var range = document.body.createControlRange();
    div.contentEditable = "true";
    range.add(div);
    range.select();
    if (document.selection.createRange().text != "") document.selection.createRange().execCommand('copy');
    div.contentEditable = "false";
    range.remove(0);
    range.select();
  }
}
*/

function ImprimirConteudoDIV(div)
{
  var specs =  'left=' + (parseInt(document.documentElement.clientWidth) + 10) + ',top=' + (parseInt(document.documentElement.clientHeight) + 10) + ',width=1,height=1,toolbar=0,scrollbars=0,status=0,channelmode=0,menubar=0,titlebar=0';
  var Impressora = window.open('','', specs); 
  Impressora.document.write(div.innerHTML);
  Impressora.document.close(); 
  Impressora.focus(); 
  Impressora.print(); 
  Impressora.close(); 
} 

function ExibirPrintPreview()
{
  var OLECMDID = 7;
  var PROMPT = 1; // 2 DONTPROMPTUSER
  /* OLECMDID values:
  * 6 - print
  * 7 - print preview
  * 1 - open window
  * 4 - Save As
  */
  
  
  var WebBrowser = '<OBJECT ID="WB1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
  
  document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
  
  WB1.ExecWB(OLECMDID, PROMPT);
  WB1.outerHTML = '';
}

function ImprimirUsandoTemplate(CaminhoTemplate)
{
  var OLECMDID = 6;
  var PROMPT = 2;
  
  var WebBrowser = '<OBJECT ID="WB1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
  
  document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
  
  WB1.ExecWB(OLECMDID, PROMPT, CaminhoTemplate);
  WB1.outerHTML = '';
}


