// Show and Hide Div functions
// by Marius Kleijn
// Version 1.0 - may 18, 2011
//
// Include this script on your page:
// <script language="javascript" src="scripts/showHideDiv.js"></ script> 
// 
// to call in flash use:
// import flash.external.ExternalInterface;
// ExternalInterface.call("showDiv", "divName");

function showDiv(id)
{
   document.getElementById(id).style.display = 'block';
}

function hideDiv(id)
{
   document.getElementById(id).style.display = 'none';
}

