var newWin;
var printmess = "Print Flyer";
function printPage() {
window.print();  
}
function popupWin(url) {
	newWin = window.open(url, 'popWin', 'height=670,width=600,left=100,top=0,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) { newWin.focus() }
}

function winHome(url) {
	newWin = window.open(url, 'popWin', 'height=600,width=400,left=100,top=0,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) { newWin.focus() }
}

function winAudio()
{
	newWin=window.open('','demo','height=670,width=600,left=100,top=0,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) { newWin.focus() }
	newWin.document.write('<html><head><title>Super-Learners - Language Demo</title>');
	newWin.document.write('</head><body>');
	newWin.document.write('<center>');
	newWin.document.write('<embed=\"../media/democd/French.mp3\" WIDTH=150 HEIGHT=250 CONTROLS=TRUE>');
	newWin.document.write('</center>');
	newWin.document.write('</body></html>');
	newWin.document.close();
	
}