// ¸Þ´ºº° ÆäÀÌÁö ÀÌµ¿
function goWindow(url)
{
	var tmpUrl



	
	if(url =='indie-e')					// ¿µ¹®ÀÎµð½ºÅä¸®¼Ò°³
	{	
		tmpUrl = "/English/html/indie_Background.asp";
	}
	else if(url =='active')					// main active
	{	
		tmpUrl = "/English/html/indie_Activities.asp";				
	}
	else if(url =='news-e')					// ¿µ¹®´º½º
	{	
		tmpUrl = "/English/html/indie_bbs.asp?NoticeType=4";
	}
	else if(url =='consult-e')					// consulting
	{	
		tmpUrl = "/English/html/indie_Consulting.asp";
	}
	else if(url =='resourse-e')					// resourse-e
	{	
		tmpUrl = "/English/html/indie_Resources.asp";
	}
	else if(url =='contact-e')					// contact-e
	{	
		tmpUrl = "/English/html/indie_Contactus.asp";
	}
	if(tmpUrl != "") 
	{
		document.location.href = tmpUrl;
	}
}

function showFlash(fla, width, height, version, wmode)
{
	var ver, trans;
	
	switch (version){
		case 6 : ver = "6,0,29,0";	break;
		case 7 : ver = "7,0,19,0";	break;
		default : ver = "8,0,0,0";	break;
	}

	switch (wmode) {
		case "n" : trans = "";				break;
		default : trans = "Transparent";	break;
	}

	var object =
		"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" + ver + "' width='" + width + "' height='" + height + "'>"
		+ "<param name='movie' value='" + fla + "' />"
		+ "<param name='quality' value='high' />"
		+ "<param name='wmode' value='" + trans + "'>"
		+ "<embed src='" + fla + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed>"
		+ "</object>"
	
	document.write( object );
}

function showMedia(file, width, height, show)
{

	var object ="<embed src='"+file+"' width='"+width+"' height='"+height+"' type='video/x-ms-wmv' showcontrols='"+show+"' loop='true' autostart='true'>"
	document.write( object );
}


