

function makeFlashObject(o,filePath,Width,Height, Color){

	//Build Flash String
	var Data = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"../https@download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\""+Width+"\" height=\""+Height+"\" id=\"flash"+o+"\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"wmode\" value=\"Transparent\" /><param name=\"movie\" value=\""+filePath+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\""+ Color +"\" /><embed src=\""+filePath+"\" quality=\"high\" bgcolor=\""+ Color +"\" width=\""+Width+"\" height=\""+Height+"\" name=\"flash"+o+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"../https@www.macromedia.com/go/getflashplayer\" /></object>";

	var oId = document.getElementById(o)
	
	//Check Ifnot null or undefined to avoid client script errors
	if ((typeof(oId)!="undefined")&&(oId!=null)){
		oId.innerHTML = Data;
	}

}






/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}