//Error handler
function silentHandler()  {return true}
window.onerror=silentHandler

function getPrintIcon()
{
	var result = "<BR><a href=\"javascript:printpage();\"><IMG SRC=\"system/printer.gif\" WIDTH=\"23\" HEIGHT=\"24\" BORDER=\"0\" ALT=\"Print This Page\"></a>";
	return result;
}

function printpage() {
	window.print();  
}
function popup_window(the_page,the_width,the_height) {
  window.open(the_page,"","status=no,menubar=no,scrollbars=yes,resizable=no,width=" + the_width + ",height=" + the_height);
  return false;
}
function getLodeStarInfo() {
	popup_window('http://www.lodestarlearning.com/interactions/info/index.html',600,400);
}