ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));

function msover( idcopy ){
        if (ie4){
                event.srcElement.style.color="#ff9933";
                event.srcElement.style.cursor = "hand";
        }
}

function msout3(){
        if (ie4){
                event.srcElement.style.color="#000000";
                event.srcElement.style.cursor = "auto";
        }

}

function toggle( targetId ){
  if (ie4){
	  		   target = document.all( targetId );
                        if (target.style.display == "none"){
								document.all.itlinks.style.display = "none";
								document.all.msdn.style.display = "none";
								document.all.directaccess.style.display = "none";
							    document.all.consultingservices.style.display = "none";
								
					//document.all.knowledgeworker.style.display = "none";//
								
								
								
								
								document.all.licensingcentral.style.display = "none";
								
								
								
								
								
                                target.style.display = "";
                        } else {
                                target.style.display = "none";
                        }
        }
}
