var newWindow = null;

function openWindow(contentURL, windowName, windowWidth, windowHeight) {

  

    widthHeight = 'width=' + windowWidth +',' + 'height=' + windowHeight + ',scrollbars=yes';

    newWindow = window.open(contentURL, windowName, widthHeight);

    newWindow.focus();

}