// Flash function for homepage feature panel

	function embedFlashMovie(getID,getPath,getWidth,getHeight,getTransparency,getReturn) {
		// embed flash movie
		flashString = "<object id='" + getID + "' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=8,0,0,0' width='" + getWidth + "' height='" + getHeight + "'>";
		flashString += "<param name='movie' value='" + getPath + "'><param name='quality' value='high'>";
		if(getTransparency) flashString += "<param name='wmode' value='transparent'>";
		flashString += "<embed name='" + getID + "' src='" + getPath + "' ";
		if(getTransparency) flashString += "wmode='transparent' ";
		flashString += "quality='high' pluginspage='http:\/\/www.macromedia.com\/go\/getflashplayer' type='application\/x-shockwave-flash' width='" + getWidth + "' height='" + getHeight + "' \/>";
		flashString += "<\/object>";
		if(getReturn) {
			return flashString;
		} else {
			document.write(flashString);
		}
	}