function sendpage()
{ 
window.open('/SEC/PrintPage.aspx ','sec','width=300,height=480,menubar=no,scrollbars=no,toolbar=no,location=no,directories=no,resizable=no,top=0,left=10'); 
}

function printpage()
{ 
window.open('/SEC/Templates/PrintPage.aspx','prt','width=600,height=450,menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=no,top=0,left=10'); 
}


/* Save Page */

var isReady=true ;
function doSaveAs()

{
   if (document.execCommand)

   {
      if (isReady)

      {

         window.document.execCommand("SaveAs",null,document.title);

      }
   }

   else

   {
      alert('Feature available only in Internet Exlorer 4.0 and later.');
   }

}

