<!--// <![CDATA
	
	/**
	*	Opens the signup window.
	*/
	function signup()
	{
		signupwindow = window.open("assets/forms/signup/","signup","toolbars=no,address=no,left=10,top=10,status=yes,width=468,height=400,scrollbars=yes,resizable=no")
	}	
	
	/**
	*	Handle fscommand messages from Flash.
	*/
	function flash_DoFSCommand( command, args )
	{
		var start = "FSCommand:";
		
		if( command.indexOf( start ) == 0 )
		{
			command = command.substr( start.length );
		}
		
		var commands = [ "setFlashHeight", "setHash", "track" ];
		
		var i = 0;
		var l = commands.length;
		
		var str;
		
		for( i = 0;i < l;i++ )
		{
			
			/*
			alert( command );
			alert( commands[ i ] );
			alert( command == commands[ i ] );
			*/
			
			if( commands[ i ] == command )
			{
				str = commands[ i ] + "( '" + args + "' );";
				
				//alert( str );
				
				eval( str );
				return;
			}
		}
	}
	
	/**
	*	Sets the height of the Flash movie.
	*/
	function setFlashHeight( height )
	{
		document.getElementById( object_id ).style.height = height + "px";
	}
	
	/**
	*	Sets the hash property of the window. Used for bookmarking sections.
	*/
	function setHash( hash )
	{
		window.location.hash = hash;
	}
// ]]>-->
