<!--

isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
isHot=false;

function ddInit(e){
	topDog=isIE ? "BODY" : "HTML";
	
	//PROD BENEFITS
	whichDog=isIE ? document.all.Layer01 : document.getElementById("Layer01");

	//TECH DATA
	whichDog2=isIE ? document.all.Layer02 : document.getElementById("Layer02");
	
	//COLOR CHART
	whichDog3=isIE ? document.all.Layer03 : document.getElementById("Layer03");
	
	//FORM INSTRUCTIONS
	whichDog4=isIE ? document.all.Layer04 : document.getElementById("Layer04");
	
	
	

	
	hotDog=isIE ? event.srcElement : e.target;  
	while (hotDog.id!="titleBar"&&hotDog.tagName!=topDog){
		hotDog=isIE ? hotDog.parentElement : hotDog.parentNode;
	}  
	if (hotDog.id=="titleBar"){
		offsetx=isIE ? event.clientX : e.clientX;
		offsety=isIE ? event.clientY : e.clientY;
		nowX=parseInt(whichDog.style.left);
		nowY=parseInt(whichDog.style.top);
		ddEnabled=true;
		document.onmousemove=dd;
	}
}

function dd(e){
	if (!ddEnabled) return;
	whichDog.style.left=isIE ? nowX+event.clientX-offsetx : nowX+e.clientX-offsetx; 
	whichDog.style.top=isIE ? nowY+event.clientY-offsety : nowY+e.clientY-offsety;
	return false;  
}

function hideLayer01(){
	if (isIE||isNN) whichDog.style.visibility="hidden";
	else if (isN4) document.Layer01.visibility="hide";
}

function showLayer01(){
	if (isIE||isNN) whichDog.style.visibility="visible";
	else if (isN4) document.Layer01.visibility="show";
}

function hideLayer02(){
	if (isIE||isNN) whichDog2.style.visibility="hidden";
	else if (isN4) document.Layer02.visibility="hide";
}

function showLayer02(){
	if (isIE||isNN) whichDog2.style.visibility="visible";
	else if (isN4) document.Layer02.visibility="show";
}

function hideLayer03(){
	if (isIE||isNN) whichDog3.style.visibility="hidden";
	else if (isN4) document.Technical_DataLyr.visibility="hide";
}

function showLayer03(){
	if (isIE||isNN) whichDog3.style.visibility="visible";
	else if (isN4) document.Technical_DataLyr.visibility="show";
}

function hideLayer04(){
	if (isIE||isNN) whichDog4.style.visibility="hidden";
	else if (isN4) document.Technical_DataLyr.visibility="hide";
}

function showLayer04(){
	if (isIE||isNN) whichDog4.style.visibility="visible";
	else if (isN4) document.Technical_DataLyr.visibility="show";
}




document.onmouseover=ddInit;
document.onmouseup=Function("ddEnabled=false");

//-->