ie=document.all;
ns6=(document.getElementById&&!document.all);
opera=(document.opera);
lastOpened="X";

function flipDIV(n) {

	if (n == 'danetechn') {
			
		if (ie) {
			
			with (document.all[n])className=(className=="h" && n.length != 1)?"s":"h";
		
		} else {

			with (document.getElementById(n))className=(className=="h" && n.length != 1)?"s":"h";

		}


	} else if (n != lastOpened) {

	
		if(ie) {
			if(lastOpened!="X"&&lastOpened!=n&&lastOpened.length == 1){document.all[lastOpened].className="h";}
			with (document.all[n])className=(className=="h" && n.length == 1)?"s":"h";
			lastOpened=n;
		}

		if(ns6){
			if(lastOpened!="X"&&lastOpened!=n&&lastOpened.length == 1){document.getElementById(lastOpened).className="h";}
			with (document.getElementById(n))className=(className=="h" && n.length == 1)?"s":"h";
			lastOpened=n;
		}

		if(opera){
			if(lastOpened!="X"&&lastOpened!=n&&lastOpened.length == 1){document.getElementById(lastOpened).className="h";}
			with (document.getElementById(n))className=(className=="h" && n.length == 1)?"s":"h";
			lastOpened=n;
		}

	}

}

function flipDIVold(n) {
if(ie){
if(lastOpened!="X"&&lastOpened!=n){document.all[lastOpened].className="h";}
with (document.all[n])className=(className=="h")?"s":"h";
lastOpened=n;
	}
if(ns6){
if(lastOpened!="X"&&lastOpened!=n){document.getElementById(lastOpened).className="h";}
with (document.getElementById(n))className=(className=="h")?"s":"h";
lastOpened=n;
	}
if(opera){
if(lastOpened!="X"&&lastOpened!=n){document.getElementById(lastOpened).className="h";}
with (document.getElementById(n))className=(className=="h")?"s":"h";
lastOpened=n;
	}
}