/* ##################################################
-	Blaze Audio left Navigationa Menu Script
-	Copyright © Blaze Audio 2006. All rights reserved.
-	Author : Raju Singh Rathore
-	Created Date : 10 Sep, 2006 
##################################################### */ 

var topLevelMenuItem = 0;
var learnHome = 0;

function toggle(id, parentid, pageID1, pageID2, URL, isredirect, notogleme) {
	
		if(!notogleme) {
					
			if (document.getElementById("level_1_" + id)) 
			  document.getElementById("level_1_" + id).className = "lv2as_current";
			
			if (document.getElementById(pageID1))		
			  document.getElementById(pageID1).className = "lv3as_current";	  
			
			if (document.getElementById(pageID2))		
			  document.getElementById(pageID2).className = "lv4as_current";	  
		}
   	
	
	if (URL != '')	{
		window.location=URL;
	}
	 	 		
	return false;   
}


/*
 Function : LaunchChildWindow()
 Accepts  : url -> url to show
			name -> name of child window object
			properties -> child window properties
 Date     : 04-07-2007
 Author   : Raju Singh Rathore
*/
var WindowObjectReference = null;
function LaunchChildWindow(url,name,properties){
	//"width=600,height=530,resizable=yes,scrollbars=yes,status=yes"
	if(WindowObjectReference == null || WindowObjectReference.closed) {
		WindowObjectReference = window.open(url,name,properties);
	} else{
		WindowObjectReference.close();
		//WindowObjectReference.focus();
		WindowObjectReference = window.open(url,name,properties);
    };
}