﻿function PopupCenter(pageURL, title,width,height) {
    var left = (screen.width/2)-(width/2);
    var top = (screen.height/2)-(height/2);
    var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' +width + ', height=' + height + ', top=' + top + ', left=' + left );
}
function GetCategoryName(Id, ModuleName) {
    document.getElementById('Link-' + ModuleName + '-' + Id.toString()).href = document.getElementById('Cat-' + ModuleName + '-' + Id.toString()).innerHTML;
}
