// JavaScript Document
//*************************** BEGIN function DisplayFrame *************************************
<!--
function DisplayFrame(fid,pid)	//allow the user to preview the print with the frame type they select
	{
	var possible_frame_types = new Array(
	'../../../Images/Frame_NoFrame.jpg',
	'../../../Images/Frame_Charcoal.jpg',
	'../../../Images/Frame_Burgundy.jpg',
	'../../../Images/Frame_Walnut.jpg',0);

	setIapLayerZindex(zleft=1,zmat=2,zprint=3); // Frame to back, Mat to mid, Print to top
	if (d=document.getElementById("ChangeFrame"+pid.substring(2,4)))
		d.src = possible_frame_types[parseInt(fid.substring(2,4))];
	setIapLayerZindex(zleft=1,zmat=2,zprint=3); // Frame to back, Mat to mid, Print to top
	}
// -->
//*************************** END function DisplayFrame *************************************