/* flash */
function IndexFlash(pSwfUrl,xmlPath,gnbPath,contentPath,gnbXmlPath){	
	var pathArr = pSwfUrl.split("/");
	var flashID = pathArr[pathArr.length-1].split(".")[0];

	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='1035px'  id='"+flashID+"' height='765px' align='middle'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='"+pSwfUrl+"' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='FlashVars' value='xmlPath="+ xmlPath+"&gnbPath="+gnbPath+"&contentPath="+contentPath+"&gnbXmlPath="+gnbXmlPath+"' />");
	document.write("<param name='wmode' value='transparent' />");
	document.write("<embed src='"+pSwfUrl+"' FlashVars='xmlPath="+ xmlPath+"&gnbPath="+gnbPath+"&contentPath="+contentPath+"&gnbXmlPath="+gnbXmlPath+"' quality='high' wmode='transparent' width='1035px' height='765px' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>"); 
}

function gnbFlash(pSwfUrl,depth1,depth2,xmlPath){	
	var pathArr = pSwfUrl.split("/");
	var flashID = pathArr[pathArr.length-1].split(".")[0];

	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='700px'  id='"+flashID+"' height='80px' align='middle'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='"+pSwfUrl+"' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='FlashVars' value='depth1="+ depth1+"&depth2="+depth2+"&xmlPath="+xmlPath+"' />");
	document.write("<param name='wmode' value='window' />");
	document.write("<embed src='"+pSwfUrl+"' FlashVars='depth1="+ depth1+"&depth2="+depth2+"&xmlPath="+xmlPath+"' quality='high' wmode='window' width='700px' height='80px' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>"); 
}

// rollover Img
var selectedOverImg = '';
function imgOver(param) {
	var obj;
	if (typeof param == "string" ){
		obj = document.getElementById(param);
	} else {
		obj = param;
	}
	if(obj.src.search(/\_over/gi) >= 0)selectedOverImg = obj.src;
	obj.src = obj.src.replace("_off.gif", "_on.gif");
}
function imgOut(param) {
	var obj;
	if (typeof param == "string" ){
		obj = document.getElementById(param);
	} else {
		obj = param;
	}
	if(obj.src != selectedOverImg)obj.src = obj.src.replace("_on.gif", "_off.gif")
}

function popPage(targ,selObj,restore){ 
	window.open(selObj.options[selObj.selectedIndex].value); 
	if (restore) selObj.selectedIndex=0; 
}

