/***********************************************************
***************   JS FLASH    ******************************
***********************************************************/

function WriteSWF(path, file, width, height, wmode, bgcolor, id){
var EmbedSWF = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" id=\""+id+"\" width=\""+width+"\" height=\""+height+"\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\""+path+file+"\" /><param name=\"quality\" value=\"high\" /><param name=\"menu\" value=\"false\" /><param name=\"wmode\" value=\""+wmode+"\" /><param name=\"bgcolor\" value=\""+bgcolor+"\" /><param name=\"allowScriptAccess\" value=\"sameDomain\" /><embed src=\""+path+file+"\" bgcolor=\""+bgcolor+"\" wmode=\""+wmode+"\" menu=\"false\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" id=\""+id+"\" name=\""+id+"\" allowScriptAccess=\"sameDomain\" width=\""+width+"\" height=\""+height+"\"></embed></object>";

document.write(EmbedSWF);
}


function WriteYouTubeSWF(path, width, height, wmode){
var EmbedSWF = "<object width=\""+width+"\" height=\""+height+"\"><param name=\"movie\" value=\""+path+"\" /></param><param name=\"wmode\" value=\""+wmode+"\" /></param><embed src=\""+path+"\" type=\"application/x-shockwave-flash\" wmode=\""+wmode+"\" width=\""+width+"\" height=\""+height+"\"></embed></object>";

document.write(EmbedSWF);
}

function WriteDailymotionSWF(path, width, height, wmode){
var EmbedSWF = "<object \""+width+"\" height=\""+height+"\"><param name=\"movie\" value=\""+path+"\" /></param><param name=\"allowfullscreen\" value=\"true\"></param><embed src=\""+path+"\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\" allowfullscreen=\"true\"></embed></object>";
document.write(EmbedSWF);
}