function MakeFlashString(source,id,width,height,wmode, otherParam)
{	
	return "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width="+width+" height="+height+" id="+id+"><param name=wmode value="+wmode+" /><param name=movie value="+source+" /><param name=quality value=high />"+otherParam+"<embed src="+source+" quality=high wmode="+wmode+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" width="+width+" height="+height+"></embed></object>";
}

function MakeObjectString(name, width,height, param)
{
	return "<object classid=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715\" type=\"application/x-oleobject\" name="+name+" width="+width+" height="+height+">"+param+"</object>";
}

function MakeObjectStringCap(name, width,height, param)
{
	return "<object classid=\"clsid:ED46CB8C-9A26-4e71-B05E-41CC1F951736\" codebase=\"../../play/TVCFPlayer.CAB#version=1,0,0,2\" name="+name+" width="+width+" height="+height+">"+param+"</object>";
}


function MakeUpdate(id,width,height)
{	
	return "<object style=\"WIDTH: "+width+"px; HEIGHT: "+height+"px\" classid=\"CLSID:3BE0021D-5CC6-4701-B8B1-F5D45A5BCC88\" codebase=\"http://www.tvcf.co.kr/XFileUpload/Library/XFileUpload_OnlyOne.CAB#version=1,4,0,8\" width="+width+" height="+height+" id="+id+" VIEWASTEXT></object>";
}


function MakeUpdate2(id,width,height)
{	
	return "<object classid=\"CLSID:F36BB72B-9876-4C6D-B22F-D68E480A39B5\" codebase=\"http://www.tvcf.co.kr/XFileUpload/Library/XFileUpload_OnlyOne.CAB#version=1,4,0,8\" width="+width+" height="+height+" id="+id+" VIEWASTEXT></object>";
}
function MakeMonitorCTL(id,width,height)
{	
	return "<object classid=\"CLSID:79CC1612-7F81-48A1-9EF1-4FC0F4C5F5F5\" codebase=\"http://www.tvcf.co.kr/XFileUpload/Library/XFileUpload_OnlyOne.CAB#version=1,4,0,8\" width="+width+" height="+height+" id="+id+" VIEWASTEXT></object>";
}
// innerHTML Type
function SetInnerHTML(target, code)
{ 
	target.innerHTML = code; 
}

// Direct Write Type
function DocumentWrite(src)
{
	document.write(src);
}


