/* 

Atlantic BT base scripts
v. 2

last mod: 6-10-09
by: Mark


*/


/*################################################################################## ABT BASE Functions */


/* Remove negative text-indent borders on links */
var theahrefs = document.getElementsByTagName('a');
//fix dotted line thing when link is OnClicked
for(var x=0;x!=theahrefs.length;x++){ theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;}; }
//a:focus { -moz-outline-style: none; }   <-- this is found in the moz.css file to take care of firefox
	

function printThis() {
	(window.print) ? window.print() : alert('To print his page press Ctrl-P on your keyboard \nor choose print from your browser or device after clicking OK');
}