// Site "Home" Directory - This variable is called from multiple scripts in this file...
var home  = "/";

/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function PrintPage() { 
	var sOption="toolbar=no,location=no,directories=no,menubar=yes,scrollbars=yes,width=575,height=600,left=100,top=25";
	//var sTitle = document.getElementById('printTitle').innerHTML;
	var sContent = document.getElementById('printable').innerHTML;
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>Franchise Canada | Print</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+home+'common/franchise_canada.css\"></head>');
		winprint.document.write('<body id="print-send">'); 
		winprint.document.write('<img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"5\" border=\"0\" alt=\"\"><div><img src=\"'+home+'images/wrapper/logo.gif\" width=\"324\" height=\"100\" border=\"0\" alt=\"Franchise Canada\" style=\"margin: 10px 0 0 30px;\"></div><img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"5\" border=\"0\" alt=\"\">');
		winprint.document.write('<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">');
		winprint.document.write('<tr><td width=\"23\" rowspan="3"><img src=\"'+home+'images/spacer.gif\" width=\"23\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\">');
		//winprint.document.write(sTitle);
		//winprint.document.write('<br><br>');
		winprint.document.write(sContent);
		winprint.document.write('</td><td width=\"23\"><img src=\"'+home+'images/spacer.gif\" width=\"23\" height=\"1\" border=\"0\" alt=\"\"></td></tr>');
		winprint.document.write('<tr><td colspan=\"2\">&nbsp;</td></tr>');
		winprint.document.write('<tr><td colspan=\"2\" width=\"100%\" style=\"margin-top: 0.5em; border-top: 1px solid #000000;\">');
		winprint.document.write('<img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>&copy; Franchise Canada. All rights reserved.<br><img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>Franchise Canada, your source for a comprehensive list of Quality franchises in Canada.</small><BR><BR><a href=\"#\" onclick=\"window.print();return false\">PRINT THIS PAGE</a><br><br>');
		winprint.document.write('</td></tr>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus(); 
}

// "Send to a Friend" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Send() {
	popupEmailWin = window.open(''+home+'email-friend.php', 'send', 'scrollbars=auto,width=475,height=500,left=380,top=50,noresize')
}
