/*popup*/
var newWindow = null;
function openWindow(contentURL, windowName, windowWidth, windowHeight) {
	 
	   widthHeight = 'width=' + windowWidth +',' + 'height=' + windowHeight + ', scrollbars=auto';
	   newWindow = window.open(contentURL, windowName, widthHeight);
	   newWindow.focus();
}
