
//function popWindow(helpItem) {

//NewWindow = window.open(helpItem, "NewWindow", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=yes,width=480,height=350");

//NewWindow.focus();
//}

function popWindow(URL, width, height, scrol) {
var options = "height=" + height + ",width=" + width + ",toolbar=no,menubar=no,scrollbars=" + scrol + ",resizable=yes,location=no,directories=no,status=yes"
popWindow = window.open(URL, 'popWindow', options);
}

