$(document).ready(function(){ 
    $('#pop_up_video').css('height',$(window).height());
	$('#video_container').css('margin-left',$(window).width()/2-140);
});


function video_ac(){
document.getElementById('pop_up_video').style.display='block';
document.getElementById('video_container').style.display='block';
document.getElementById('video_container').innerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="302" height="300"> <param name="movie" value="/flash/player/videoPlayer.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <embed src="/flash/player/videoPlayer.swf" width="302" height="300" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent"></embed></object>';
}
function video_kapat(){
document.getElementById('pop_up_video').style.display='none';
document.getElementById('video_container').style.display='none';
}
