function dnd_DoFSCommand(command, args) {

	var command_strs = command.split("||");

	for (iCmdIndex = 0; iCmdIndex < command_strs.length; iCmdIndex++)
	{
		switch (command_strs[iCmdIndex])
		{
			case "show":
        location.href="http://www.bellwetherinteractive.com/dragndrop-3.php";
				break;
			case "hide":
        break;
			case "setValues":
				break;
			case "showQLabel":
				document.getElementById('s5').style.visibility='visible';
				break;
			case "hideQLabel":
        document.getElementById('s5').style.display='none';
				break;	
		}
	}
		
}

