﻿function thumbnail(image, partNumber, color, lights, height, width) {
    var test = new String(image);
    
    imageWindow = window.open('_blank', '_blank', 'height = 400, width = 300');
    imageWindow.document.write('<body style = "background-color:#4587EB"><img src = "' + image + '" alt = "" width = "275" height = "275"><br /><table><tr><td>Part Number: </td><td>"' + partNumber + '" </td></tr><tr><td>Color: </td><td>"' + color + '"</td></tr><tr><td>Number of Lights: </td><td>"' + lights + '" </td></tr><tr><td>Height: </td><td>"' + height + '"</td></tr><tr><td>Width: </td><td>"' + width + '"</td></tr></table></body>');
    imageWindow.focus();
    imageWindow.document.close();
}

