﻿function openItem(zoneID, categoryID, itemID, itemStatus, width, height) { //v2.0
    // var theURL='/ShowItem.aspx?zoneID='+zoneID+'&amp;categoryID='+categoryID+'&amp;itemID='+itemID+'&amp;itemStatus='+itemStatus;
    var theURL = '/item,' + zoneID + ',' + categoryID + ',' + itemID + ',' + itemStatus + '.htmx';
    var winName = 'news' + zoneID + '_' + categoryID;
    var features = 'resizable=yes,scrollbars=yes,width=' + width + ',height=' + height;
    // alert(theURL);alert(winName);alert(features);
    window.open(theURL, winName, features);
    return false;
}