// JavaScript Document
//*************************** BEGIN function DisplayMat *************************************
<!--
function DisplayMat(id)   //allow the user to preview the print with mat color selected 
{
var possible_mat_colors = new Array('#ffffff','#F6EEC8',0);

setIapLayerZindex(zleft=1,zmat=2,zprint=3); // Frame to back, Mat to mid, Print to top
document.getElementById("L3-mat-prod").style.backgroundColor=possible_mat_colors[parseInt(id.substring(2,4))];
setIapLayerZindex(zleft=1,zmat=2,zprint=3); // Frame to back, Mat to mid, Print to top
}
// -->
//*************************** END function DisplayMat *************************************