// JavaScript Document 2-28-07

 $(document).ready(function(){
  externalGateway();
 });
 
 function externalGateway()
  {
	  //any a tag that has a target of _blank will
	  //prompt a confirm
	 $("a[@target=_blank]").click(function(){
	
	 alert("Please click OK to continue. If a new window does not open please disable all pop-up blockers or contact our Technical Support at support@lasallegroup.com or 1-800-452-7255 x119.");
	
 });
}
