<!--

function addSmartDeals (prefimg) {
var hpStr;
var i;

var smartimg=new Array(4);
var linkimg=new Array(4);

smartimg[0]='images/smart/sd_wl.gif';
smartimg[1]='images/smart/sd_ptt.gif';
smartimg[2]='images/smart/sd_cd.gif';
smartimg[3]='images/smart/sd_thy.gif';

linkimg[0]='product/cashmng/payment.htm#WorldLink';
linkimg[1]='product/cashmng/corresp.htm';
linkimg[2]='product/cashmng/intbank.htm';
linkimg[3]='product/cashmng/global.htm';

if(prefimg == undefined)
	i = Math.round(Math.random()*(smartimg.length-1));
	else i = prefimg;


hpStr = ' <table width="165" border="0" cellspacing="0" cellpadding="0">'+
          '    <tr> '+
          '      <td> '+
          '        <p><a href="' + path + linkimg[i] + '"><img src="' + path + smartimg[i] + '" width="166" height="200" vspace="3" border="0"></a></p>'+
          '      </td>'+
          '    </tr>'+
          '  </table>'+
          '  <table width="100%%" border="0" cellspacing="0" cellpadding="0">'+
          '    <tr> '+
          '      <td colspan="2" nowrap><img src="' + path + 'images/pixel.gif" width="1" height="5"></td>'+
          '    </tr>'+
          '    <tr> '+
          '      <td width="100%" nowrap>&nbsp;</td>'+
          '      <td width="0" nowrap>&nbsp;</td>'+
          '    </tr>'+
          '  </table>';

document.write(hpStr);
}


function addSmartMoves (prefstr) {
var hpStr;
var i;

var smartstr=new Array(3);

smartstr[0] = '<p align="left">Citibank&#39;a PTT şubeleri üzerinden ulaşabilirsiniz... <br>' + 
		'Citibank ile nakit yönetimi işlemlerinizi PTT&#39;nin Türkiye genelindeki tüm ' + 
		'on-line şubeleri üzerinden rahatlıkla yapabilirsiniz!<br><br><a href="' + path + 
		'product/cashmng/corresp.htm">Detaylı bilgi</a></p>';

smartstr[1] = '<p align="left">CitiDirect<img src="' + path + 'images/reg_dark.gif" border="0"> Online Banking</a> ' +
		'ile pek çok bankacılık işleminizi gerçekleştirebilirsiniz:<br>' + 
		'<img src="' + path + 'images/dot1.gif">Havale/EFT<br>' + 
		'<img src="' + path + 'images/dot1.gif">Döviz İşlemleri<br>' + 
		'<img src="' + path + 'images/dot1.gif">Hesap Ekstresi/Dekont<br>' + 
		'<img src="' + path + 'images/dot1.gif">İthalat Ödemeleri<br><br>' + 
		'<a href="' + path + 'product/cashmng/intbank.htm">Detaylı bilgi</a></p>';

smartstr[2] = '<p align="left">Citibank USD hesabınızdan 135 den fazla döviz cinsinde işlem ' +
		'yapma olanağına sahipsiniz. <br><br>Detaylı bilgi için lütfen <a href="' + 
		path + 'contact.htm">CitiService</a>&#39;i arayınız.</p>';

if(prefstr == undefined)
	i = Math.round(Math.random()*(smartstr.length-1));
	else i = prefstr;

hpStr = '<p align="right"><img src="' + path + 'images/smartmoves.gif" alt="smart moves" width="81" height="10"><br>'+
        '<img src="' + path + 'images/1grey.gif" width="165" height="1"></p>'+smartstr[i];

document.write(hpStr);
}


//-->
