/* Commonly used Script Files in Curriculum Mapper */


function CloseWindow()
{
	window.opener.location.reload();
	window.close();
	window.opener.focus();
}

function PrintPage()
{
if(window.print)
{
window.print();
}
else
{
alert("Macintosh Users must use the keyboard to print a page.  Press APPLE-P to print this page.  PC users may press CONTROL-P to print the page.");
}
}

function printPage()
{
if(window.print)
{
window.print();
}
else
{
alert("Macintosh Users must use the keyboard to print a page.  Press APPLE-P to print this page.  PC users may press CONTROL-P to print the page.");
}
}


function openWindow(url) 
{ 
  var newWin = window.open(url, 'newWin'); 
} 
