function stopError() {
  return true;
}

window.onerror = stopError;

/* CALL TO CORRECT DIRECTORY */
var imgdir;
if(window.homepage)
{
imgdir="images/";
}
else if(window.absolutepage)
{
imgdir="http://www.fnbhutchonline2.com/images/"
}
else if(window.securepage)
{
imgdir="https://www.fnbhutchonline2.com/images/"
}
else
{
imgdir="../images/";
}

function showMap(){
	var map = '<html><head><title>Map</title></head><body bgcolor="#FFFFFF"><div align="center"><img src="'+imgdir+'map.gif" width="265" height="281" alt="" border="0"></div><div align="right"><font style="font-family: Arial, Helvetica, sans-serif"><a href="javascript:window.print();" id="print">Print Map</a></font></div></body></html>';
	var pWidth = ((parseInt(screen.width) - 290) / 2); 
	var pHeight = ((parseInt(screen.height) - 290) / 2);
    newwin = window.open("","_blank", "width=290,height=315,left="+pWidth+",top="+pHeight+", scrollbars=0");
 	newwin.document.open('text/html','replace');
	newwin.document.write(map);
	newwin.document.close();
	return;
}

//end of file    