﻿
function prePrint()
{
	if (window.print) window.print();
	else if (VBS) printIt();
	else alert('This script does not work in your browser');
}

function mailpage()
{
    mail_str = "mailto:?subject= Have a look at the Snell website ";
    mail_str += "&body= Have a look at this website I found. " ;
    //mail_str += "This page may be of interest to you - " + location.href; 
    mail_str += "This page may be of interest to you - " + escape(window.location.href); 
   
    location.href = mail_str;
    
}

/*It is for products_list.aspx*/
 function ConvertRowsToLinks(xTableId){

        var rows = document.getElementById(xTableId).getElementsByTagName("tr");
        
   
        for(i=0;i<rows.length;i++){
          var link = rows[i].getElementsByTagName("a")
          
          if(link.length == 1){
            rows[i].onclick = new Function("document.location.href='" + link[0].href + "'");
            /*var class_name = this.classname*/
            
                  /*rows[i].onmouseover = new Function("this.className='highlight'");*/
            
          }
        }

      }
      
    function CallPrint(strid,title)
    {

        var prtContent = document.getElementById(strid);
        var prtCss = '<LINK media=all href="http://www.snell.co.nz/css/style_ie.css" type="text/css" rel=stylesheet>';
        var prttitle = '<div class="Title_21">' + title + '</div>';
        

        var WinPrint = window.open('','','letf=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status=0');
        
        prtContent = prtContent   ;
        WinPrint.document.write(prtCss + prttitle + prtContent.innerHTML );
        WinPrint.document.close();
        WinPrint.focus();
        WinPrint.print();
        WinPrint.close();
        prtContent.innerHTML=strOldOne;
    }
   
      
