<!--
// Filename: productPlane.js
// Project : Iceshield.com
// Description: javascript file used on the product plane detail pages

	function OverPart( lngImg )
	{
		if ( document[ 'imgWireframe' ] && lngImg != 0 )
		{
			document[ 'imgWireframe' ].src = './images/wireframes/' + strMarker + '.' + lngImg + '.gif';
		}
	}
	
	function OutPart( )
	{
		if ( document[ 'imgWireframe' ] )
		{
			document[ 'imgWireframe' ].src = './images/wireframes/' + strMarker + '.gif';
		}
	}
	
	var lngLastPart = 0;
	function ViewPartDetails( lngID )
	{
		if ( lngLastPart != 0 && lngLastPart != lngID )
		{
			if ( document.getElementById( 'part' + lngLastPart ) )
			{
				document.getElementById( 'part' + lngLastPart ).style.visibility = 'hidden';
			}
		}
		if ( document.getElementById( 'part' + lngID ) )
		{
			document.getElementById( 'part' + lngID ).style.visibility = 'visible';
			lngLastPart = lngID;
		}
	}
	
	function ClosePartDetails( lngID )
	{
		if ( document.getElementById( 'part' + lngID ) )
		{
			document.getElementById( 'part' + lngID ).style.visibility = 'hidden';
			lngLastPart = 0;
		}
	}
//-->
