// JavaScript Document

function Hide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
               switch_id.className = 'hide';
   menu_status[theid] = 'hide';
		}
         }
function show(theid,ownid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
               switch_id.className = 'show';
    var switch_id1 = document.getElementById(ownid);
               switch_id1.className = 'hide';
		}
         }

		 
menu_status = new Array(); 
function hello(theid)
{
	 if (document.getElementById) 
	{
		var switch_id = document.getElementById(theid);
		var switch_id1 = document.getElementById("pane-wrap");

           switch_id.className = 'show';
		menu_status[theid] = 'show';
           switch_id1.className = 'hide';

      }
	 
 
	if(theid!="a")
		{
		
			var	switch_id = document.getElementById("a");
			var switch_id1 = document.getElementById("pane-wrap");
			if(menu_status["a"] == 'show') 
			{
				switch_id.className = 'hide';
				menu_status["a"] = 'hide';
				switch_id1.className = 'hide';
		   }
		 }
		   
		   if(theid!="b")
		{
	var	switch_id = document.getElementById("b");
	var switch_id1 = document.getElementById("pane-wrap");
		if(menu_status["b"] == 'show') {
		switch_id.className = 'hide';
           menu_status["b"] = 'hide';
		   switch_id1.className = 'hide';
		   }
		   }
		   		   
		   if(theid!="c")
		{
	var	switch_id = document.getElementById("c");
	var switch_id1 = document.getElementById("pane-wrap");
		if(menu_status["c"] == 'show') {
		switch_id.className = 'hide';
           menu_status["c"] = 'hide';
		   switch_id1.className = 'hide';
		   }
		   }
		   

}


function getURL(URL) {
	
	window.location (URL);
}

function getURLNewWindow(URL) {
	
	window.open (URL);
}


