/* Copyright (c) 2009 Smileweb co., Ltd.  All rights reserved.  www.smileweb.co.kr */

function make_flv(streamName,Width,Height,allowDoamin )
{

var  result="";
if(allowDoamin ==''){ allowDoamin='sameDomain'; }

result += ("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='" + Width + "' height='"+ Height +"' id='FLVPlayer'>");
result += ("<param name='movie' value='/fla/FLVPlayer.swf' />");
result += ("<param name='allowScriptAccess\" value='" + allowDoamin + "' />");           
result += ("<param name='salign' value='lt' />");
result += ("<param name='quality' value='high' />");
result += ("<param name='scale' value='noscale' />");
result += ("<param name='loop' value='-1' />");
result += ("<param name='FlashVars' value='&MM_ComponentVersion=1&skinName=http://onstyle.smst.kr/js/smstflvSkin&streamName="+ streamName +"&autoPlay=true&autoRewind=false' />");
result += ("<embed src='/fla/FLVPlayer.swf' flashvars='&MM_ComponentVersion=1&skinName=/fla/smstflvSkin&streamName="+ streamName +"&autoPlay=true&autoRewind=false' quality='high' scale='noscale' width='" + Width + "' height='"+ Height +"' name='FLVPlayer' salign='LT' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");          
result += ("</object>");

return result;

}

function movie_flv(streamName,Width,Height,allowDoamin )
{
if(allowDoamin ==''){ allowDoamin='sameDomain'; }

document.writeln("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='" + Width + "' height='"+ Height +"' id='FLVPlayer'>");
document.writeln("<param name='movie' value='/fla/FLVPlayer.swf' />");
document.writeln("<param name='salign' value='lt' />");
document.writeln("<param name='quality' value='high' />");
document.writeln("<param name='scale' value='noscale' />");
document.writeln("<param name='loop' value='-1' />");
document.writeln("<param name='wmode' value='transparent' />");
document.writeln("<param name='FlashVars' value='&MM_ComponentVersion=1&skinName=/fla/smstflvSkin&streamName="+ streamName +"&autoPlay=true&autoRewind=false' />");
document.writeln("<embed src='/fla/FLVPlayer.swf' flashvars='&MM_ComponentVersion=1&skinName=/fla/smstflvSkin&streamName="+ streamName +"&autoPlay=true&autoRewind=false' quality='high' scale='noscale' width='" + Width + "' height='"+ Height +"' name='FLVPlayer' salign='LT' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");          
document.writeln("</object>");

}

function movie_flv_simple_list(streamName,Width,Height, className , id)
{
	return "<embed id='"+id+"' name='"+id+"' class='"+className+"' src='/fla/FLVPlayerSimple.swf' flashvars='Url="+ streamName +"&Width="+ Width +"&Height="+ Height +"&OffMode=0' width='"+ Width +"' height='"+ Height +"' menu=0 wmode=transparent />";
}
