 //This script is used for the Printable Version Icon.

var gAutoPrint = true; // Flag for whether or not to automatically call the print function
function print(iLanguage)
{
	var iLanguage;
	
	if (document.getElementById != null)
	{
	
		var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n<HTML lang="eng">\n<HEAD>\n';

		html += '<link rel=STYLESHEET href=http://www.vcc.ca/styles/mainprint.css type=text/css>';
		html += '\n</HE' + 'AD>\n<BODY>\n<div align="center"><img src=http://www.vcc.ca/images/VCCLogoWeb-Green&Black.gif border=0></div><br><br><br>';
				
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			if(iLanguage == 1){
				alert("The printable version of this page is not yet available. For best results, set the left and right Page Setup margins to .25 inches or select landscape orientation in your printer's print layout or configuration menu/option.");
				return;}
			else{
				alert("La version imprimable de cette page n'est pas encore disponible. Pour obtenir de meilleurs résultats, réglez les marges de gauche et de droite à 0,25 po. ou choisissez le format horizontal dans le menu d'impression (Print > Layout > Landscape).");
				return;}
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","print");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		if(iLanguage == 1){
				alert("The printable version feature on this Web site is only available in modern browsers - IE 4.0+, NS 6.0+, Mac/Win.");
				return;}
			else{
				alert("La version imprimable de ce site Web est disponible uniquement dans les navigateurs modernes - IE 4.0+, NS 6.0+, Mac/Win.");
				return;}
	}
	
	
}
