// JavaScript Document

function showNewWindow(pageUrl, windowWidth, windowHeight ) {
	var w = window.open(pageUrl, '_blank', 'width='+ windowWidth +',height='+ windowHeight +',resizable');
    w.focus();
    return false;
}
