function FORMATDATE(tdate,tformat)
{
var retval=tformat;
var tday=parseInt(tdate.substr(0,2)),tmonth=parseInt(tdate.substr(3,2)),tyear=parseInt(tdate.substr(6,4));
var tmonthname="";
	if(tmonth==1)tmonthname="Ocak";
	else if(tmonth==2)tmonthname="Şubat";
	else if(tmonth==3)tmonthname="Mart";
	else if(tmonth==4)tmonthname="Nisan";
	else if(tmonth==5)tmonthname="Mayıs";
	else if(tmonth==6)tmonthname="Haziran";
	else if(tmonth==7)tmonthname="Temmuz";
	else if(tmonth==8)tmonthname="Ağustos";
	else if(tmonth==9)tmonthname="Eylül";
	else if(tmonth==10)tmonthname="Ekim";
	else if(tmonth==11)tmonthname="Kasım";
	else if(tmonth==12)tmonthname="Aralık";
retval=retval.replace("DD",tday);
retval=retval.replace("MMMM",tmonthname);
retval=retval.replace("MM",tmonth);

retval=retval.replace("YYYY",tyear);
return retval;
}

function GO_CNTFRM(tact)
{
var turl="/default.asp?PAG00_CODE=CNTTR&tACT="+tact;
document.location.href=turl;
}

function GO_NWS01_LST(tNWS00_CODE,tEXT_PARAMS)
{
var tPAG00_CODE="HBRLSTTR";
var turl="/default.asp?PAG00_CODE="+tPAG00_CODE+tEXT_PARAMS+"&NWS00_CODE="+tNWS00_CODE;
document.location.href=turl;
}

function GO_MKLDET(tMKL00_CODE,tMKL01_CODE,tEXT_PARAMS)
{
var turl="/default.asp?PAG00_CODE=MKLDTYTR&MKL00_CODE="+tMKL00_CODE+"&MKL01_CODE="+tMKL01_CODE+tEXT_PARAMS;
document.location.href=turl;
}

