<!--
	//filename: images.js
	//project:  www.caler.com
	//description: various image management functions for display
	//dependencie(s): popup.js
	
	//description: used for popping up a large image based on dimensions
	function ExpandImage( lngImgID, lngWidth, lngHeight )
	{
		var	strProp;
		strProp = POPUP_MakeProperties( 100, 100, lngWidth, lngHeight, false, false, false, false, false, false, false );
		POPUP_OpenGet( 'imageLargeView.asp?ID=' + lngImgID, 'ProductImage' + lngImgID, strProp );
	}
	
	//write out the image caption holder div
	document.write( '<div id="imageCaption"></div>' );
	//write out the pointers
	document.write( '<img id="imageCaptionPointer" src="images/tiparrow.gif">' );
	document.write( '<img id="imageCaptionPointerLow" src="images/tiparrowlow.gif">' );
//-->
