 
//------------------------ Leaving Industrial Bank Warning -----------------
function redirectPopUp(url) 

// JS dynamic redirect pop-up::
// Creates Pop-Up window warning about leaving ssnb domain
// 
// call the function with the following link:
// <a href="javascript:redirectPopUp('http://www.url.com');" class="link" >Go to URL.com!</a> 
// where www.url.com can be any internet address.   text: ' go to url.com!' can be changed to anything, or can be an immage.
// in dreamweaver, simply paste this into link dialogue: javascript:redirectPopUp('http://www.url.com');
// and change "URL" to the address you want to send users to.
{  
  
   var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
       sOption+="scrollbars=no,width=450,height=375,left=100,top=25"; 

 
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html> <head> <title>Leaving Industrial Bank</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="http://www.industrial-bank.com/newsite/styles/global.css" rel="stylesheet" type="text/css"></head><body bgcolor="#CC3300" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="380" bgcolor="#F5D26E" class="maincontent" style="border-bottom: 1px dotted #CCCCCC"> <p class="ptitle1" align="center">You are leaving the Industrial Bank Web Site</p> <p class="newsbox2" align="left">You are about to leave Industrial Banks Website. Industrial Bank has made a limited effort to determine that these links function properly. However, linked sites are not under the control of Industrial Bank, and Industrial Bank is not responsible for the contents of any linked site, or any link contained in a linked site. Even if you access a different site by means of the link provided by Industrial Bank, you are responsible for confirming the identity and authenticity of any website/company you visit and transact business with online.</p></td> </tr> <tr> <td height="7" bgcolor="#000000"><img src="http://www.industrial-bank.com/newsite/images/spacer.gif" width="100%" height="7"></td> </tr> <tr> <td class="maincontent"> <p class="newsbox2"><font color="#FFFFFF">The inclusion of a link does not imply or constitute an endorsement by Industrial Bank of the website, its ownership or management, the products or services it offers, or any advertisers or sponsors appearing on the web site.</font></p> <p class="ptitle1" align="center"><font color="#FFFFFF">Do you wish to continue?</font></p> <p class="ptitle1" align="center"></p><p class="ptitle1" align="center"></p> <table width="100%" cellspacing="0" cellpadding="7"> <tr valign="top"> <td align="right"> <table width="40" cellspacing="0" cellpadding="0" style="border: 1px solid #C64520"> <tr> <td width="7" align="left" valign="middle"><img src="http://www.industrial-bank.com/newsite/images/bttn_leftcap.gif" width="7" height="17"></td> <td align="center" valign="middle" background="http://www.industrial-bank.com/newsite/images/bttn_background.gif"><a href="');
	   
	   
       winprint.document.write(url);          
       winprint.document.write('"onClick="window.close()"target="_blank"><img src="http://www.industrial-bank.com/newsite/images/bttnttl_yes.gif" width="24" height="17" border="0"></a></td> <td width="7" align="right" valign="middle"><img src="http://www.industrial-bank.com/newsite/images/bttn_rightcap.gif" width="7" height="17"></td> </tr> </table> </td> <td> <table width="40" cellspacing="0" cellpadding="0" style="border: 1px solid #C64520"> <tr> <td width="7" align="left" valign="middle"><img src="http://www.industrial-bank.com/newsite/images/bttn_leftcap.gif" width="7" height="17"></td> <td align="center" valign="middle" background="http://www.industrial-bank.com/newsite/images/bttn_background.gif"><a href="javascript:window.close()"><img src="http://www.industrial-bank.com/newsite/images/bttnttl_no.gif" width="24" height="17" border="0"></a></td> <td width="7" align="right" valign="middle"><img src="http://www.industrial-bank.com/newsite/images/bttn_rightcap.gif" width="7" height="17"></td></tr></table></td></tr></table></td> </tr> </table> </body> </html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-------------------------------------------------------------------   