

//=================================================================================================================================
// ÀÏ¹ÝÀûÀÎ flash object 
//=================================================================================================================================
function flashmenu(file,width,height,bgcolor,name) {
	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="'+width+'" height="'+height+'" id="'+name+'">'
	+ '<param name="movie" value="'+file+'" />'
	+ '<param name="quality" value="best" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<param name="bgcolor" value="'+bgcolor+'" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="AllowScriptAccess" value="always" />'
	+ '<embed src="'+file+'" quality="high" wmode="transparent" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" menu="false" AllowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '</object>');
}
function flashobject(file,width,height,bgcolor,name) {
	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="'+width+'" height="'+height+'" id="'+name+'">'
	+ '<param name="movie" value="'+file+'" />'
	+ '<param name="quality" value="best" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<param name="bgcolor" value="'+bgcolor+'" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="AllowScriptAccess" value="always" />'
	+ '<embed src="'+file+'" quality="high" wmode="transparent" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" menu="false" AllowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '</object>');
}


//=================================================================================================================================
// ÆË¾÷ °¡¿îµ¥ ¶ç¿ì±â
//=================================================================================================================================
	var win = null;
	function NewWindow(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings);
	win.focus();
	} 


//=================================================================================================================================
// ¸ðµç ¸µÅ©¿¡ ¸µÅ© Å×µÎ¸® ¾ø¾Ö±â
//=================================================================================================================================
function allblur() {
	for (i = 0; i < document.links.length; i++)
		document.links[i].onfocus = document.links[i].blur;
}



//=================================================================================================================================
// ÆË¾÷Ã¢ ´Ý°í ¸µÅ©ÆäÀÌÁö ÀÌµ¿
//=================================================================================================================================
function PopCloseLink(linkPage){
	var linkPage
	opener.location.href = linkPage;
   	self.close();
}


//=================================================================================================================================
// ÀÌ¹ÌÁö Resize
//=================================================================================================================================
function imgResize(img_id,maxWidth,maxHeight)
{
	var w=document.getElementById(img_id).width;
	var h=document.getElementById(img_id).height;
	if (w<=0) 
		time_id = window.setTimeout("controlImage('"+img_id+"')",10);
	else 
	{
		if (w > maxWidth)
			document.getElementById(img_id).width = maxWidth;
		if(h > maxHeight)
			document.getElementById(img_id).height = maxHeight;
	}
}

//=================================================================================================================================
// ÆË¾÷ ¸®»çÀÌÁî ¹× °¡¿îµ¥ Á¤·Ä
//=================================================================================================================================
function imgPopResize(img_id)
{
	var w=document.getElementById(img_id).width;
	var h=document.getElementById(img_id).height;
	if (w<=0) 
		time_id = window.setTimeout("imgPopResize('"+img_id+"')",10);
	w += 10;
	h += 30;
	var wl = (screen.width - w) / 2;
	var wt = (screen.height - h) / 2;
	window.resizeTo (w,h);
	if(w > 1024)
		wl = 0;
	if(h > 768)
		wt = 0;
	window.moveTo(wl,wt);
}

