function ShowDetailImg(url){
    if(!url.match(/^\//))
        url = "/" + url;
    var w = window.open(url, "ProductDetail", "width=600,height=525,toolbar=0,status=0,location-0,menubar=0,scrollbars=1");
    return;
}

