function showflashF(themovie,theh,thew)
{
	if (theh=="0" && thew=="0")
		document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\">")
	else
		document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width='"+ thew +"' height='"+ theh +"'>")

	document.write("<param name=\"allowScriptAccess\" value=\"always\" />")
	document.write("<param name=\"allowFullScreen\" value=\"false\" />")
	document.write("<param name=\"movie\" value=\""+ themovie +"\" />")
	document.write("<param name=\"quality\" value=\"high\" />")
	document.write("<param name=\"wmode\" value=\"transparent\" />")

	//had wmode commented out for some reason but needed to restore it because the javascript top menus were behind the flash files
	//in the top articles on the home page for grup-fm

	if (theh=="0" && thew=="0")
		document.write("<embed src=\""+ themovie +"\" quality=\"high\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed></object>")
	else
		document.write("<embed src=\""+ themovie +"\" quality=\"high\" wmode=\"transparent\" width=\""+ thew +"\" height=\""+ theh +"\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed></object>")


}

function songnameF(thesong)
{
	document.write("<EMBED src='"+ thesong +"' hidden=true autostart=true type='audio/mpeg'>")
}