function swfinc(p,w,h){

	var path = p;
	var width = w;
	var height = h;

	document.write(" <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+"'> ");
    document.write(" <param name='movie' value='"+path+"'> ");
    document.write(" <param name=WMODE value=TRANSPARENT> ");
    document.write(" <embed src='"+path+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'> ");
	document.write(" </embed> ");
	document.write(" </object> ");
}

function emdinc(p){

	var path = p;

	document.write(" <object classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95'  id='MediaPlayer1' width=0 height=0> ");
    document.write(" <param name='Filename' value='"+path+"'> ");
    document.write(" <param name='AutoStart' value='AutoStart'> ");
	document.write(" <param name='ClickToPlay' value='true'> ");
	document.write(" <param name='ShowControls' value='false'> ");
	document.write(" <param name='ShowAudioControls' value='false'> ");
	document.write(" <param name='ShowDisplay' value='false'> ");
	document.write(" <param name='ShowTracker' value='false'> ");
	document.write(" <param name='ShowStatusBar' value='false'> ");
	document.write(" <param name='EnableContextMenu' value='false'> ");
	document.write(" <param name='ShowPositionControls' value='false'> ");
	document.write(" <param name='ShowCaptioning' value='false'> ");
	document.write(" <param name='TransparentAtStart' value='false'> ");
	document.write(" <param name='ShowGotoBar' value='false'> ");
	document.write(" </object> ");
}
