// ################## Script For Flash & ActiveX #########################
// Writer : ±èõ°â
// email : prussian@skcc.com
// Last Update : 2006-02-07
// +++++++++++++ MakeFlashString(source,id,width,height,wmode) ++++++++
//
// source: source url --> Ç÷¡½¬ ÆÄÀÏÀÇ °æ·Î
// id: flash id
// width: source width
// height: source height
// wmode: wmode --> "none, transparent, opaque"
// otherparam : Ãß°¡ ÆÄ¶ó¹ÌÅÍ "
//
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// +++++++++++++ MakeObjectString(classid, codebase, name, id, width,height, param) ++++++++
//
// classid: classid --> Ç÷¡½¬ ÆÄÀÏÀÇ °æ·Î
// codebase: cabÆÄÀÏ À§Ä¡ ¹× ¹öÀüÁ¤º¸
// name :
// id :
// width: source width
// height: source height
//
// wmode: wmode --> "none, transparent, opaque"
// param : Ãß°¡ ÆÄ¶ó¹ÌÅÍ "
//
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Example
// DocumentWrite(MakeFlashString('image/ml_flash.swf','emb1','330','520','opaque'));
// SetInnerHTML(document.all.mm, MakeFlashString('image/ml_flash.swf','emb1','330','520','opaque'));
// @@ÁÖÀÇ »çÇ×
// - »óÈ£ÀÛ¿ë ¾ø´Â ÄÁÅÙÃ÷´Â DocumentWrite, SetInnerHTML µÑ´Ù »ç¿ë °¡´É
// - »óÈ£ÀÛ¿ë ÀÖ´Â ÄÁÅÙÃ÷´Â SetInnerHTML¸¸ »ç¿ë °¡´É
// #######################################################################
//function MakeFlashString(source,id,width,height,wmode, otherParam)
//{
// return "";
//}
function MakeFlashString(source, width, height, movie, quality, wmode)
{
return "";
}
//function MakeObjectString(classid, codebase, name, id, width,height, param)
//{
// return "";
//}
function MakeObjectString(classid, codebase, width, height, movie, quality, wmode)
{
return "";
}
// innerHTML Type
function SetInnerHTML(target, code)
{
target.innerHTML = code;
}
// Direct Write Type
function DocumentWrite(src)
{
document.write(src);
}