<!--
function openTransactionalWindow(url, name, options) {
	var hWindow=window.open(url, name, options);
	if (document.WndStack!=null) {
		try {
			document.WndStack.push(hWindow);
		} catch (exception) {} //fail silently
	}
}
function logoffTransactionalServices(url, name, options) {
	//close all transactional windows
	if (document.WndStack!=null) {
	try {
		var hWindow=document.WndStack.pop();
		while (hWindow!=null) 
		{
			hWindow.close();
			hWindow=document.WndStack.pop();
		}
	} catch (exception) {} //fail silently
	}
	//open the logoff service window
	window.open(url, name, options);
}
function getCookie(name) {  
	var arg = name + "=";  
	var alen = arg.length;  
	var clen = document.cookie.length;  
	var i = 0;  
	while (i < clen) {
		var j = i + alen;    
		if (document.cookie.substring(i, j) == arg)      
			return getCookieVal (j);    
		i = document.cookie.indexOf(" ", i) + 1;    
		if (i == 0) break;   
	}  
	return null;
}
function setCookie (name, value, expDays) {  
	//var expDays = -1;
	var exp;
	if(expDays != -1) {
		exp = new Date(); 
		exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
	}

	var argv = setCookie.arguments;  
	var argc = setCookie.arguments.length;  
	//var expires = (argc > 2) ? argv[2] : exp;  
	//var path = (argc > 3) ? argv[3] : null;  
	var path = "/";  
	var domain = (argc > 4) ? argv[4] : null;
	var secure = (argc > 5) ? argv[5] : false;  
	
	document.cookie = name + "=" + escape (value) + 
		((exp == null) ? "" : ("; expires=" + exp.toGMTString())) + 
		((path == null) ? "" : ("; path=" + path)) + 
		((domain == null) ? "" : ("; domain=" + domain)) +    
		((secure == true) ? "; secure" : "");
}
function deleteCookie (name) {  
	var exp = new Date();  
	exp.setTime (exp.getTime() - 1);   
	var cval = getCookie (name);  
	document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
function getCookieVal(offset) {
	var endstr = document.cookie.indexOf (";", offset);
	if (endstr == -1)
	endstr = document.cookie.length;
	return unescape(document.cookie.substring(offset, endstr));
}

/* functions for the mouseover of the "Part of Fortis" logo */
function popMsg(msg, wth, bw, bg){var content="<table  width=" + wth + " border=" + bw + "  cellpadding=3 cellspacing=0 bgcolor=" + bg + "><td style='font-family:Arial;font-size:11px'>" + msg + "</td></table>";yyy=Yoffset;if(ns4){skn.document.write(content);skn.document.close();skn.visibility="visible"}if(ns6){document.getElementById("popup").innerHTML=content;skn.display=''}
if(ie4){document.all("popup").innerHTML=content;skn.display=''}}

function get_mouse(e){
var x=(ns4||ns6)?e.pageX:event.x+document.body.scrollLeft;skn.left=x+Xoffset;
var y=(ns4||ns6)?e.pageY:event.y+document.body.scrollTop;skn.top=y+yyy;
}

function kill(){yyy=-1000;if(ns4){skn.visibility="hidden";}else if (ns6||ie4)skn.display="none"}


// -->