function PopUpDetails(strURL)
{				
	var strOptions = 'toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, width=750, height=' + (screen.height-220);
	window.open(strURL, '_blank', strOptions );
}
function PopUpKnickLarge()
{				
	var strOptions = 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=882, height=585';
	window.open('knickLarge.htm', '_blank', strOptions );
}

function on()
{				
	knickImage.style.color="red";
	knickImage.style.textDecoration="underline";
	knickImage.style.borderColor="red";
	knickImage.style.borderWidth=1;	
	knickImage.style.left=19;			
	knickImage.style.top=329;	
}		
function off()
{							
	knickImage.style.color="black";
	knickImage.style.textDecoration="none";
	knickImage.style.borderColor="transparent";					
	knickImage.style.borderWidth=0;	
	knickImage.style.left=20;			
	knickImage.style.top=330;	
}


//MENU
function menuOn(id)
{	
	document.getElementById(id).style.visibility = "visible";
}
	
function menuOff(id)
{							
	document.getElementById(id).style.visibility = "hidden";

}

function turnTextRed(id)
{
	document.getElementById(id).style.color = "red";
}
function turnTextBlue(id)
{
	document.getElementById(id).style.color = "blue";
}

//function getRef(id) 
//{
//	if (document.all) 
//	{
//		return document.all[id].style;
//	} 
//	else if(document.layers) 
//	{
//		return document.layers[id];
//	}
//}

//END MENU
