﻿function openFlash(ContentID)
{

	var f_div = document.getElementById("flashopen");	
	f_div.innerHTML = "<br /><br /><div style='width:987px;height:170px;margin-left:450px;float:left;clear:both;'><img src='/styles/images/loading.gif' /><br /><br /><b>Yükleniyor...</b></div>";
	f_div.style.display = "";
	$.post("sayfagetir.php",
		   				{ ContentID:ContentID },
						function(data)
						{
							f_div.innerHTML = data;
						});
	f_div.style.display = "";
}

function closeFlash()
{
	var f_div = document.getElementById("flashopen");
	f_div.style.display = "none";
}
