﻿// JScript File

function ArchDiag( IMG ) {
//	window.open(IMG, 'foo', 'toolbar=0,scrollbars=0,statusbar=0,menubar=0,resizable=1');
	PopSize( IMG, 680, 560 );
}

function PopPDF( PATH ) {
//	window.open(PATH, 'foo', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,fullscreen=1');
	PopSize( PATH, 750, 500 );
}

function PopSize( PATH, WIDTH, HEIGHT ) {
	window.open(PATH, 'foo', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+WIDTH+',height='+HEIGHT);
}

function PopSizeS( PATH, WIDTH, HEIGHT ) {
	window.open(PATH, 'foo', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+WIDTH+',height='+HEIGHT);
}

function PrintThisPage() {
    var windowOptions = "toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25"; 
    var contentHTML = document.getElementById('contentStart').innerHTML;
            
    var printWindow=window.open("","",windowOptions); 
    printWindow.document.open(); 
    printWindow.document.write('<html><LINK href="../App_Themes/Black/print.css" rel=Stylesheet><body>'); 
    printWindow.document.write('<iframe class="printHeader" src="../scripts/printHeader.htm" width="100%" frameborder="0" scrolling="no" ></iframe>'); 
    printWindow.document.write(contentHTML);          
    
    printWindow.document.write('<hr color=\"#000000\" size=\"1\" /><p><b>For more information:</b></p><p><i>Allan Pym, V.P. Business Development</i><br />');
    printWindow.document.write('519.666.2020 or apym@apos.com</p>');
    printWindow.document.write('<table class=\"txtTable\" width=\"100%\">');
    printWindow.document.write('<tr><td align=\top\"><img src="../App_Themes/Black/images/APOSLogo2009_150Wb.jpg" /></td></tr>');
    printWindow.document.write('<tr><td align=\"left\"><b>APOS Systems Inc.</b><br /><i>Head Office:</i> 100 Conestoga College Blvd Suite 1118, Kitchener, Ontario Canada N2P 2N6<br />');
//    printWindow.document.write('Tel: 519.894.2767 Fax: 519.894.1891<br /><i>Branch Office:</i> 35447 McKee Road, Abbotsford, BC V3G 3E4<br />Tel: 604.864.0766 Fax: 604.864.4291<br />');
    printWindow.document.write('Tel: 519.894.2767 Fax: 519.894.1891<br />');
    printWindow.document.write('Email: <a href=\"mailto:apos@apos.com\">apos@apos.com</a><br /><span class=\"\" style=\"color: #777777;\">&copy;2005 - 2010 APOS Systems Inc. All rights reserved.</span>');
    printWindow.document.write('</td></tr></table><p></p>');
    printWindow.document.close(); 
    printWindow.focus();
}

function PrintThisPageCS() {
    var windowOptions = "toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25"; 
    var contentHTML = document.getElementById('contentStart').innerHTML;
            
    var printWindow=window.open("","",windowOptions); 
    printWindow.document.open(); 
    printWindow.document.write('<html><LINK href="../App_Themes/Black/print.css" rel=Stylesheet><body>'); 
    printWindow.document.write('<iframe class="printHeader" src="../scripts/printHeader.htm" width="100%" frameborder="0" scrolling="no" ></iframe>'); 
    printWindow.document.write(contentHTML);          
    
    //printWindow.document.write('<hr color=\"#000000\" size=\"1\" /><p><b>For more information:</b></p><p><i>Allan Pym, V.P. Business Development</i><br />');
    //printWindow.document.write('519.666.2020 or apym@apos.com</p><p><i>Warren Kobbeltvedt, V.P. Global Sales</i><br />604.864.0766 or warrenk@apos.com')</p>;
    printWindow.document.write('<table class=\"txtTable\" width=\"100%\">');
    printWindow.document.write('<tr><td align=\top\"><img src="../App_Themes/Black/images/APOSLogo2009_150Wb.jpg" /></td></tr>');
    printWindow.document.write('<tr><td align=\"left\"><b>APOS Systems Inc.</b><br /><i>Head Office:</i> 100 Conestoga College Blvd Suite 1118, Kitchener, Ontario Canada N2P 2N6<br />');
//    printWindow.document.write('Tel: 519.894.2767 Fax: 519.894.1891<br /><i>Branch Office:</i> 35447 McKee Road, Abbotsford, BC V3G 3E4<br />Tel: 604.864.0766 Fax: 604.864.4291<br />');
    printWindow.document.write('Tel: 519.894.2767 Fax: 519.894.1891<br />');
    printWindow.document.write('Email: <a href=\"mailto:apos@apos.com\">apos@apos.com</a><br /><span class=\"\" style=\"color: #777777;\">&copy;2005 - 2010 APOS Systems Inc. All rights reserved.</span>');
    printWindow.document.write('</td></tr></table><p></p>');
    printWindow.document.close(); 
    printWindow.focus();
}

function GoogleSearch(q) { 
    
    window.location = "http://www.google.com/custom" + "?q=" + q + "&domains=apos.com" + "&sitesearch=apos.com" + "&forid=1" + "&channel=123" + "&client=pub-123" + "&ie=ISO-8859-1" + "&oe=ISO-8859-1" + "&hl=en";

}

