
var newWindow = null;
function openWindow2(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth + ',noresizable,noscrollbars,notoolbar';
	newWindow = window.open(contentURL,windowName,widthHeight);
}

