/*
  ### ÀÛ¼ºÀÚ : IT6 Design Team(ÀüÇÑ¼Ö´ë¸®) ###
  ### ÀÛ¼ºÀÏ : 2008³â 9¿ù 18ÀÏ ¸ñ¿äÀÏ  ###
*/

/* ¼­ºêÆäÀÌÁö ¸®»çÀÌÂ¡ DIV */
function resize_div(){
	//º¯¼ö¼³Á¤
	var total_h = parseInt(document.body.clientHeight);
	var total_x = parseInt(document.body.clientWidth);
	var btm = document.getElementById('bottom');
	var gid_box = document.getElementById('guide_box');
	var topNavi = document.getElementById('top_navi');
	var content = document.getElementById('content');
	var left = document.getElementById('left');
	
	//¡å Left & Content BOX À§Ä¡¼³Á¤
	var gidBx_h = parseInt(gid_box.style.height.substr(0,3));
	var gidBx_top = (total_h - gidBx_h)/2;
	var gidBx_left = 0;
	gid_box.style.top = gidBx_top;
	gid_box.style.left = gidBx_left;
	gid_box.style.width = total_x;
	

	//¡å Top Navigation À§Ä¡¼³Á¤
	var topNavi_top = gidBx_top;
	topNavi.style.top = topNavi_top - 190;
	

	//¡å Top Navigation À§Ä¡¼³Á¤
	var btm_h = parseInt(btm.style.height.substr(0,3))
	var btm_top = gidBx_top + gidBx_h - btm_h + 250;
	btm.style.top = btm_top;

	var left_x = (total_x - (235 + 765))/2;
	left.style.left = left_x;


	var content_h = gidBx_h;
	content.style.width = total_x - (left_x+235);
	content.style.height = content_h;
	content.style.left = left_x + 235
	content.style.top=0
}


/* ÇÃ·¡½¬ ºä */
function flashView(fileName, w, h){
	document.write("\
	<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='"+fileName+"' align='middle' />\
	<param name='allowScriptAccess' value='access' />\
	<param name='movie' value='"+fileName+"' />\
	<param name='FlashVars' value='flashVars' />\
	<param name='loop' value='false' />\
	<param name='menu' value='true' />\
	<param name='quality' value='high' />\
    <param name='wmode' value='transparent' />\
    <param name='scale' value='noscale' />\
	<param name='bgcolor' value='#FFFFFF' />\
	<embed src='"+fileName+"' FlashVars='flashVars'  quality='best' bgcolor='#FFFFFF' width='"+w+"' height='"+h+"' name='"+fileName+"' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\
	</object>");
}


/* Height Resize Àü´ã ÇÔ¼ö */
function resize_h(_nm){
	var his_table = document.getElementById('his');
	his_table.style.height = _nm;
}




	function open_movie(){
		window.open('../sample.php','sample','titlebar=0, status=0, scrollbar=0, location=0, menubar=0, resizable=0, width=720, height=400');
	}