﻿// Insert Flash
function InsertFlash(url,width,height, id) {
//	alert(navigator.appName);
	var w = width.split('%');
	var h = height.split('%');
	if(w.length > 1) {width = width} else {width = width +'px';}
	if(h.length > 1) {height = height} else {height = height +'px'}

  	if(navigator.appName == "Microsoft Internet Explorer"){
        var txt = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="'+width+'" height="'+height+'" id="'+id+'" align="middle">';
        txt+= '<param name="allowScriptAccess" value="always" />';
        txt+= '<param name="movie" value="'+url+'" />';
        txt+= '<param name="quality" value="high" />';
        txt+= '<param name="wmode" value="transparent" />';
        txt+= '</object>';
        document.write(txt);
    } else {		
        txt = '<embed id="'+id+'" name="'+id+'" src="'+url+'" quality="high" wmode="transparent" style="width:'+width+'; height:'+height+';" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
        document.write(txt);
    }
}

