function onLoad () {
	if (typeof (onLoadCascade) != "undefined") {
		onLoadCascade ()
	}
	if (document.getElementById ("divAcneFactsSWF")) {
		//setUpAcneFacts ()
		var so = new SWFObject("acneFacts.swf", "anceFactsSWF", "208", "200", "8");
		so.addParam("wmode", "opaque");
		so.write("divAcneFactsSWF");
		showDivIfNoSwf ("divAcneFactsHTM", "anceFactsSWF")
		if (!getSWFMovie ("anceFactsSWF")) {
			setUpAcneFacts ()
			showAcneFacts ()
		}
	}
}
function getSWFMovie (swfName) {
	return window [swfName] || document [swfName]
}
//used in product_*.php
function showDivIfNoSwf (htmlDivId, swfId) {
	if (!getSWFMovie (swfId)) {
		var htmlDiv = document.getElementById (htmlDivId)
		if (htmlDiv) {
			var style = htmlDiv.style
			style.display = "block";
		}
	}
}

function swfReload () {
	window.location.href = window.location.href
}