
function fIcerikBilgisiGoster(IcerikBilgileri)
{
	 dipnot = parent.frames["ifid_dipnot"];
	 if( dipnot )
	 {
		 if( IcerikBilgileri["SonGuncellemeTarihi"] && IcerikBilgileri["SonGuncellemeTarihi"].content )
		 {
		 	dipnot.document.getElementById("SonGuncellemeTarihi").innerText = " Son Güncelleme Tarihi : " + IcerikBilgileri["SonGuncellemeTarihi"].content;
		 }
		 else
		 {
			 dipnot.document.getElementById("SonGuncellemeTarihi").innerText = " Son Güncelleme Tarihi : ??? ";
		 }

		 s = "";

		 if( IcerikBilgileri["TasarimSorumlusu"] && IcerikBilgileri["TasarimSorumlusu"].content )
		 {
			 s += " Tasarım Sorumlusu: <a ";
			 if( IcerikBilgileri["TasarimSorumlusuLink"] && IcerikBilgileri["TasarimSorumlusuLink"].content )
			 {
			 	s += "href='" + IcerikBilgileri["TasarimSorumlusuLink"].content + "'";
			 }
			 s += ">" + IcerikBilgileri["TasarimSorumlusu"].content + "</a>";
		 }
		 
		 if( IcerikBilgileri["IcerikSorumlusu"] && IcerikBilgileri["IcerikSorumlusu"].content )
		 {
			 s += " İçerik Sorumlusu: <a ";
			 if( IcerikBilgileri["IcerikSorumlusuLink"] && IcerikBilgileri["IcerikSorumlusuLink"].content )
			 {
			 	s += "href='" + IcerikBilgileri["IcerikSorumlusuLink"].content + "' target='icerik'";
			 }
			 s += ">" + IcerikBilgileri["IcerikSorumlusu"].content + "</a>";
		 }

		dipnot.document.getElementById("IcerikTasarimSorumlulari").innerHTML = s;
	 }
}

// Gönderilen adres ve pencere adını kullanarak yeni bir pencerede adresteki sayfayı açar.
function fYeniPenceredeAc(pAdres, pAd)
{
  window.open(pAdres, pAd);
  //parent.document.icerik.location.href = gKaraNETAnaSayfa;
}

// Gönderilen adresi  kullanarak aynı pencerede (çağrıldığı sayfayla aynı) adresteki sayfayı açar.
function fAyniPenceredeAc(pAdres)
{
  document.location.href(pAdres);
}

// Gönderilen adresi kullanarak içerik frame'i içinde adresteki sayfayı açar.
function fIcerikPenceresindeAc(pAdres)
{
  parent.document.icerik.location.href = pAdres;  
}
function HavaDurumuTahminler()
{
	var toppos = 0;
	var leftpos = 0;
	toppos = (window.screen.height-380) / 2;
	leftpos = (window.screen.width - 760) / 2;
	window.open("http://www.gnkur.tsk/meteoroloji/tahminler.asp","TAHMINLER", "height=380,width=760,left=" + leftpos + ",top=" + toppos +",scrollbars=no,status=no,toolbar=no,menubar=no,location=no");
}

