	var moz = (typeof document.implementation != 'undefined') && (typeof document.implementation.createDocument != 'undefined');
	
	var theClassName;
	
	function Exists( nodeID ) {
		//alert( document.getElementById( nodeID ) );
		ex = document.getElementById( nodeID ) ? true: false;
		return ex;
	}
	
	function formfixAux(){
		document.getElementById( 'mainform' ).style.display = "block";
	}
	
	function formfix() {
		if (moz && Exists( "mainform" )) {
			document.getElementById( 'mainform' ).style.display = "none";
			document.getElementById( 'mainform' ).style.display = "block";
			//a = setTimeout( formfixAux, 1 );
		}
	}
	
