// Links to the appropriate login page from the transaction link

function link2Login(vthis)
{
    	var shost = vthis.hostname;
	// Parse out web for internal sites i.e. vtwebt0	
	var env = shost.substring(2,5);

	if (env.toUpperCase() == 'WEB') {
		href='http://' + shost + '/secure'
    	} else {

		if ((shost.indexOf("www") != -1) || (shost.indexOf("WWW") != -1)) { // shost contains subsring "www"

			href='https://' + shost + '/secure'
		}
		else {  // shost does not contain "www", prepend it so providers do not
			// receive 'website not found' error when 'www' is omitted.

			href='https://' + 'www.' + shost + '/secure'
		}
	}	

	return href;
}
<!--onMouseOutChange is used as the replacement value when hovering over certain links.  The value is displayed at the top of the web page.-->
<!--
var onMouseOutChange = "Our site is back up and running.  Trading Partners can go ahead and submit your electronic claims.&nbsp;";
function change(html){description.innerHTML=html}

//-->

<!-- -->
