// JavaScript Document
// <![CDATA[
	// -------- 'FF_setFlashStyle' v1.0 --- 2005-02-07
	// -- by philip brands *sneeuwitje*
	// -- This is a discussion-piece: You may have to alter the script to suit your needs for production
	// -- Be a darling: do not remove this comment if you use this script for your pages.
	// -- Sugestions and Updates @ http://sneeuwitje.org/insideout/
	// -- Disclaimer: Use, but be responsible yourself. I never said this script is solid: it's a discussion-piece!
	// -------- thank you --- philip brands *sneeuwitje*
	function FF_setFlashStyle () {
		//alert(navigator.userAgent);
		if (navigator.appVersion.toUpperCase().indexOf("MSIE") > 0 || navigator.userAgent.toUpperCase().indexOf("SAFARI") > 0) {
			document.getElementById("FFbody").style['margin']="0px";
		} else if (navigator.userAgent.indexOf("Mach-O") <= 0 && navigator.userAgent.toUpperCase().indexOf("FIREFOX") <= 0) {
			var pleaseApply = window.confirm ("It's a mess in browser-land ...\n"
				+"\nIf you are using a www.mozilla.org browser: "
				+"\nYou should 'OK' to apply the appropriate sylesheet, otherwise 'Cancel'.");
			if (!pleaseApply) {
				document.getElementById("FFbody").style['margin-left']="0px";
				document.getElementById("FFbody").style['margin-top']="0px";
				document.getElementById("FFbody").style['margin-right']="0px";
				document.getElementById("FFbody").style['margin-bottom']="0px";
			}
		} 
		if (navigator.userAgent.indexOf("Mach-O") > 0 || navigator.userAgent.toUpperCase().indexOf("FIREFOX") > 0 || pleaseApply == true) {
			document.getElementById("FFhtml").style['height']="100%";
			document.getElementById("FFbody").style['height']="100%";
			document.getElementById("FFbody").style['margin']="0px";
		}
	}
	FF_setFlashStyle ();
// ]]>