// old version
//function newWindow(url,wide,high) {
//	var newWin = "window.open(url,'popWindow','width=" + wide + ", height=" + high + "');"
//	eval (newWin);
//	newWin.focus();
//}

var newWindow = null;

function openWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth;
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}

function closeWindow() {
	if (newWindow != null)  {	
	 newWindow.close();
	 newWindow = null;
	}
}
