// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/";

/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Print() { 
	var whatLanguage = location.pathname;

	var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25";
	//var sTitle = document.getElementById('printTitle').innerHTML;
	var sContent = document.getElementById('content').innerHTML;
	
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>West End Kids</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/west_end_kids.css\"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print.css\"></head>');
		winprint.document.write('<body class=\"#print\">'); 
		winprint.document.write('<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">');
		winprint.document.write('<tr><td width=\"100%\">');
		winprint.document.write('<img src=\"'+link_path+'images/wrapper/logo.gif\" alt=\"West End Kids\" width=\"178\" height=\"67\" border=\"0\"><br><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\">');
		//winprint.document.write(sTitle);
		winprint.document.write('<br><br>');
		winprint.document.write(sContent);
		winprint.document.write('<hr size=\"1\"><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>Copyright &copy; West End Kids <br><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"></small></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(''+link_path+'email-friend.php', 'send', 'scrollbars=auto,width=475,height=600,left=380,top=50,resizable')
}