// JavaScript Document

function flashHead(file, song, homelink, starter){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="706" height="210" title="usa la voce" id="headFlashBanner">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<param name="FlashVars" value="homelink='+homelink+'&song='+song+'&starter='+starter+'" />\n');
	document.write('<embed src="'+file+'" swLiveConnect="true" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="706" height="210" name="headFlashBanner" FlashVars="homelink='+homelink+'&song='+song+'&starter='+starter+'"></embed>\n');
	document.write('</object>\n');
}

function flashBanner(file){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="183" height="120">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="'+file+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="183" height="120"></embed>\n');
	document.write('</object>\n');
}

function loadFlashId(file, id, width, height){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" title="usa la voce" id="'+id+'">\n');
	document.write('<param name="movie" value="'+file+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" swLiveConnect="true" name="'+id+'"></embed>\n');
	document.write('</object>\n');
}