<!-- This script will chnage the product Image and is called when radio box is checked in the grid for 2 attribute products -->
<!-- Begin
function StyleImg(img_prd,img_clr) {
//
//alert('ProdCode:' + img_prd + img_clr);
//document[img_name].src='graphics/prd/' + img_prd + img_clr + '.jpg';
//This function will delay the load of the zoomed/large image
if (img_prd) {
MagicZoom_stopZooms();
//Now define the image path zoomLink of the href
var zoomLink = document.getElementById('zoom1');
//set the new product display image
document['sclr'].src='graphics/prd/' + img_prd + img_clr + '.jpg';
//set the new zoomed/large image path
zoomLink.href='graphics/prd/lrg/' + img_prd + img_clr + '.jpg';
//now start zoom
setTimeout( function() { MagicZoom_findZooms(); MagicThumb.refresh(); }, 100 );
//setTimeout('MagicZoom_findZooms()', 100);
}}
// End -->
