var newWin;
function printPage() {
window.print();  
}
function signInWin() {
	logOnPopUp = window.open('signIn.php', 'signIn', 'height=350,width=450,left=100,top=50,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) { logOnPopUp.focus(); }
}

function membersWin() {
	newWin = window.open('test_members.php', 'popWin', 'height=500,width=700,left=100,top=50,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) { newWin.focus() }
}

function alumniWin() {
	newWin = window.open('test_alumni.php', 'popWin', 'height=500,width=700,left=100,top=50,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) { newWin.focus() }
}

function signupWin() {
	newWin = window.open('test_mailinglist.php', 'popWin', 'height=500,width=700,left=100,top=50,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) { newWin.focus() }
}

function compactWin() {
	nWin = window.open('','compact','height=500,width=600,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) { nWin.focus() }
	nWin.document.write('<html><head><title>Jr. Philharmonic Orchestra of California</title>');
	nWin.document.write('</head><body bgcolor="#e1e1c4" style="font-family:arial;font-size:12pt;">');
	nWin.document.write('<center>');
	nWin.document.write('<div style="color: red; font-size: 14pt;">The Impossible Dream</div>');
	nWin.document.write('<img src="oldimages/jpocd.jpg"><br>');
	nWin.document.write('"The Impossible Dream" comprises some of the Jr. Phil\’s most requested music including the score to The Man of La Mancha, The Andalucia Suite, Khachaturian\'s Gayane Ballet Suite with the fiery Sabre Dance, Mozart\’s Overture to the Marriage of Figaro, Offenbach\'s Orpheus in the Underworld with the exciting Can-Can, Gershwin\’s Porgy and Bess and John William\’s Star Wars. <br><br>');
	nWin.document.write('<br><span style="font-weight: bold;">The CD may be purchased by sending a check or money order in the amount of $19.95 which includes shipping and handling to the Jr. Philharmonic Orchestra, 157 South Fairfax Avenue, Los Angeles, CA 90036-2106.<br></span> <br><br>');
	nWin.document.write('For more information please email us at ');
	nWin.document.write('<a href="mailto:cd@jrphil.org">cd@jrphil.org</a>');
	nWin.document.write('</center>');
	nWin.document.write('</body></html>');
	nWin.document.close();
}
