function JSObjectVar(file, w, h, snumber) {
	var filename = "../images/flash/"+file+snumber+".swf";
	var str = "";
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + w + '" height="' + h + '">';
	str += '<param name=movie value="'+filename+'">';
	str += '<Param name=quality value=high>';
	str += '<param name=wmode value=transparent>';
	str += '<embed src="'+filename+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '"></embed></object>';
	document.write(str);
}

function JSObjectURL(url,w,h) {
	var str = "";
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + w + '" height="' + h + '">';
	str += '<param name=movie value="' + url + '">';
	str += '<Param name=quality value=high>';
	str += '<param name=wmode value=transparent>';
	str += '<embed src="' + url + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '"></embed></object>';
	document.write(str);
}
function JSObjectHtml(w,h){
	var str = "";
	str = '<OBJECT NAME="Editor" ID="Editor" TABINDEX=4 STYLE="WIDTH: "' + w + '"; HEIGHT: "' + h + '";" CLASSID="clsid:2D360201-FFF5-11d1-8D03-00A0C959BC0A" VIEWASTEXT>';
	str += '<PARAM NAME="scrollbars" VALUE="true">';
	str += '</OBJECT>'
	document.write(str);
}

//±¹¹® ¿µ¹® ÆäÀÌÁö ¹Ù·Î°¡±â
function goURL(param) {
	if(param == "kor") str = "bfia";
	else str = "beng";
	go_page = "http://" + str + ".test.sgnet.co.kr:800/";

//	if(param == "kor") str = "www";
//	else str = "eng";
//	go_page = "http://" + str + ".bfia.or.kr/";

//	window.open(go_page, param);
	location.href = go_page;
}