function showFlash(code, height, width){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="'+height+'" width="'+width+'">');
	document.write('<param name="movie" value="'+code+'">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="quality" value="best">');
	document.write('<param name="play" value="true">');
	document.write('<param name="loop" value="false">');
	document.write('<embed pluginspage="http://www.macromedia.com/go/getflashplayer" src="'+code+'" type="application/x-shockwave-flash" quality="best" play="true" loop="false" height="'+height+'" width="'+width+'" wmode="transparent">');
	document.write('</object>');
}

function showFlashJuke(code, height, width){
	
	var lpURL = parent.document.URL;
	var startframe;
	
	if (lpURL.indexOf('?') == -1){
		
		startframe = 0;
		
	} else {
		
		startframe = lpURL.substring(lpURL.indexOf('?')+1, lpURL.length);
	}
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" height="'+height+'" width="'+width+'">');
	document.write('<param name="movie" value="'+code+'?videoPlay='+startframe+'">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="quality" value="best">');
	document.write('<param name="play" value="true">');
	document.write('<param name="loop" value="false">');
	document.write('<embed pluginspage="http://www.macromedia.com/go/getflashplayer" src="'+code+'?videoPlay='+startframe+'" type="application/x-shockwave-flash" quality="best" play="true" loop="false" height="'+height+'" width="'+width+'" wmode="transparent">');
	document.write('</object>');
}