function openPage(strID, blnNewWindow, strParameters) { if (blnNewWindow) { if (strParameters != null) { window.open('/?id=' + strID, null, strParameters); } else { window.open('/?id=15115&cid=' + strID); } } else { window.location.href = '/?id=15115&cid=' + strID } } function openUrl(strUrl, blnNewWindow, strParameters) { if (blnNewWindow) { if (strParameters != null) { window.open(strUrl, null, strParameters); } else { window.open(strUrl); } } else { window.location.href = strUrl } }