var newWindow = null;

function openWindow(contentURL,windowName) {
	newWindow = window.open(contentURL,windowName);
	newWindow.focus()
}
