var PP = 
{
    ToggleDivision: function (divid)
    {
      if(document.getElementById(divid).style.display == 'none')
      {
        document.getElementById(divid).style.display = 'block';
        try
        {
          document.getElementById(divid + "image").innerText = '-';
        }
        catch(e) {}
      }
      else
      {
        document.getElementById(divid).style.display = 'none';
        try
        {
          document.getElementById(divid + "image").innerText = '+';
        }
        catch(e) {}
      }
    }
}

function loadflash()
{
  //swfobject.embedSWF("/HtmlFragments/swf/versie1.swf",			"mainswf", 			 "615", "268", "9.0.0", "expressInstall.swf");
	loadFlashMovie("versie1");
}
function loadFlashMovie(fileName)
{
	var flashvars	= {}; 
	var params		= {wmode: "transparent"};
	var attributes	= {}; 

	swfobject.embedSWF("/HtmlFragments/swf/" + fileName + ".swf",	"mainswf", 			 "615", "268", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
	
	loadFlashButtons();
}
function loadFlashButtons()
{
	var flashvars	= {}; 
	var params		= {wmode: "transparent"};
	var attributes	= {}; 

	//return _loadFlashButtons();
	
	swfobject.embedSWF("/HtmlFragments/swf/coaching.swf",		"contactwidget", 	 "175", "135", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
	swfobject.embedSWF("/HtmlFragments/swf/inspiratie.swf",		"nieuwsbriefwidget", "175", "135", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
	swfobject.embedSWF("/HtmlFragments/swf/masterclass.swf",	"livemeetingwidget", "175", "135", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
	swfobject.embedSWF("/HtmlFragments/swf/geheim.swf",			"memberswidget", 	 "175", "135", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
}

function _loadFlashButtons()
{
	swfobject.embedSWF("/HtmlFragments/swf/chat_contact.swf",		"contactwidget", 	 "175", "135", "9.0.0", "expressInstall.swf");
	swfobject.embedSWF("/HtmlFragments/swf/nieuwsbrief.swf",		"nieuwsbriefwidget", "175", "135", "9.0.0", "expressInstall.swf");
	swfobject.embedSWF("/HtmlFragments/swf/live_meeting.swf",		"livemeetingwidget", "175", "135", "9.0.0", "expressInstall.swf");
	swfobject.embedSWF("/HtmlFragments/swf/members_only.swf",		"memberswidget", 	 "175", "135", "9.0.0", "expressInstall.swf");
}

/*
Org code
*/
function livechat()		
{
	window.open("/LiveChat/",		"_self");
}
function nieuwsbrief()	
{
	window.open("/Nieuwsbrief/",	"_self");
}
function livemeeting()	
{
	window.open("/LiveMeeting/",	"_self");
}
function membersonly()	
{
	window.open("/Members/",		"_self");
}

/*
New 2009.09.30 overrules original version.
*/
function livechat()		
{
	window.open("/Orientatie/Pages/Coaching.aspx",					"_self");
}
function nieuwsbrief()	
{
	window.open("/Inspiratie/Pages/Inspireermij.aspx",				"_self");
}
function livemeeting()	
{
	window.open("/Inspiratie/Pages/AanvraagMasterclass.aspx",		"_self");
}
function membersonly()	
{
	window.open("/Het-Nieuwe-Werken/Pages/RequestInfoHNWForm.aspx",	"_self");
  //window.open("/HNW/Pages/RequestInfoHNWForm.aspx",				"_self");
}

function ShowCoaching()
{
	// alert("Hello, world.");
	window.open("/Orientatie/Pages/Coaching.aspx",					"_self");
}
function ShowInspiration()
{
	// alert("Hello, Inspiration.");
	window.open("/Inspiratie/Pages/Inspireer-mij.aspx",				"_self");
}
function ShowMasterclass()
{
	// alert("Hello, Masterclass.");
	window.open("/Inspiratie/Pages/Masterclass.aspx",				"_self");
}
function ShowSecret()
{
	window.open("/Het-Nieuwe-Werken/Pages/RequestInfoHNW.aspx",		"_self");
  //window.open("/HNW/Pages/RequestInfoHNW.aspx",					"_self");
}
 