/* javascript function to show color option enlarged images

*/
function showEnlargedImage(img, name, width, height, left, top)
    {
        var objstyle = window.document.getElementById(name).style;
        objstyle.left = left;
        objstyle.top = top;
        document.getElementById(name).innerHTML = '<img src="' + img + '" border="0" width="' + width + '" height="' + height + '" class="option_image">'
        //objstyle.width = width;
        //objstyle.height = height;
        //objstyle.display = '';
}


