function FlashLoad(furl,fwidth,fheight) {
	var strURL = window.location.href;
	var strFlashURL = "download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0";
	var strFlashPage = "www.macromedia.com/go/getflashplayer";
	if (strURL.indexOf("https") >= 0) {
		strFlashURL = "https://" + strFlashURL;
		strFlashPage = "https://" + strFlashPage;
	}
	else {
		strFlashURL = "http://" + strFlashURL;
		strFlashPage = "http://" + strFlashPage;
	}
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="' + strFlashURL+ '" width="'+fwidth+'" height="'+fheight+'"><param name="movie" value="'+furl+'"><param name="quality" value="high"><param name="wmode" value="opaque"/><embed src="'+furl+'" quality="high" pluginspage="' + strFlashPage + '" type="application/x-shockwave-flash" width="'+fwidth+'" height="'+fheight+'" wmode="opaque"></embed></object>');  	
}