function enLarge(PicFolder, pic) {
                   
       picwindow = window.open("zoom2.php?PicFolder=" + PicFolder + "&pic=" + pic, "picwindow", "scrollbars=0,resizable=1,width=540,height=580");
       setTimeout("picwindow.focus()", 100)
}


function ShowPic() {

     var idx = document.PrintOrder.PrintName.options.selectedIndex;
     if (idx == 0) {
         document.images.PrintWindow.src = "pix/BGgreen.gif";
     }
     else {
          document.images.PrintWindow.src = document.PrintOrder.PrintName.options[idx].value;
     }
}   


function getPrintInfo() {

    var idxprint = document.PrintOrder.PrintName.options.selectedIndex;
    var idxsize  = document.PrintOrder.PrintSize.options.selectedIndex;
    document.PrintOrder.item_number.value =  document.PrintOrder.PrintSize.options[idxsize].text + " print of image: " + document.PrintOrder.PrintName.options[idxprint].text;   
    document.PrintOrder.amount.value = document.PrintOrder.PrintPrice.value;

    if (idxprint == 0) {
        alert("Please select an Image Name from the list.")
     return false;
     } 
    if (idxsize == 0) {
        alert("Please select a Print Size for this image.")
        return false;
    }
    return true;
}

function PriceCheck () {

    var idxsize = document.PrintOrder.PrintSize.options.selectedIndex;

    if (idxsize == 0) {
        document.PrintOrder.PrintPrice.value = "";
    }
    if (idxsize == 1) {
        document.PrintOrder.PrintPrice.value = "75.00";
    }
    if (idxsize == 2) {
        document.PrintOrder.PrintPrice.value = "100.00";
    }
    if (idxsize == 3) {
        document.PrintOrder.PrintPrice.value = "125.00";
    }
    if (idxsize == 4) {
        document.PrintOrder.PrintPrice.value = "175.00";
    }
}


