function testCSC(nonframes){

// check Cross Frame Spoofing
	if (nonframes) { // TOP
//		if (navigator.userAgent.indexOf("Mac")==-1)
			if (top != self)
				top.location = self.location;
	} else {	// SSC
		try {
			if (top.location.hostname != self.location.hostname) {
			        top.location = "http://www.citibank.cz";
			}
		} catch(e){
		        top.location = "http://www.citibank.cz";
		}
	};
};

function footer(){
	testCSC(true);
	document.write(
'<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" background="/czech/images/line1.gif">'+
'<tr><td>&nbsp;'+
'</td></tr></table>'+
'<table BORDER=0 CELLSPACING=1 CELLPADDING=2 WIDTH="100%">'+
'<tr>'+
'<td valign="top">'+
'<table nowrap cellpadding="0" cellspacing="0" width="260"><tr>'+
'<td><font face="Arial,Helvetica" size=1> <A href="http://www.citibank.com" target=_top><IMG align=middle alt="Citibank Logo" border=0 height ="19" src="/czech/images/citigrpl.gif" width="69"><br>citibank.com</A></font></td></tr>'+
'<tr><td></td></tr>'+
'</table>'+
'</td>'+
'<td ALIGN=right VALIGN=top>'+
'<font face="Arial,Helvetica"><font size=-2>'+
'<A href="/czech/homepage/ochrana-dat.htm" target="privacy">Prohlášení o ochraně osobních údajů</a>'+
'<br><A href="/czech/homepage/upozorneni.htm" target="privacy">upozornění</A>'+
'<br>Copyright © 2005 Citicorp</font></font></td>'+
'</tr>'+
'</table>'
	);
};



