﻿// JScript File

function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function popupddrivetip(n)
{
    switch (n)
    {
        case 0:
        {
            ddrivetip('This item is UNIQUE!<br />You <b>can not</b> order more than 1 peace.','#adff2f');
            break;
        }
        default:
        {
            ddrivetip('','#fd4400');
            break;
        }
    }
}

function openZoomWindow() {
    image_filename = document.getElementById('PhotoMainImage').src;
    openZoomWindow2('ProductPhotoZoom.aspx?imageUrl=' + image_filename.replace('/Photos/', '/OriginalPhotos/'));
}

function openZoomWindow2(url)	{
	    var openZoomWindow = open(url,"ZoomWindow",'status=0,scrollbars=1,resizable=1,width=500,height=500,top=50,left=50');
}

