<!-- //Hide from old browsers
var newWindow = null;

function openWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth;
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}

function openScrollWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth + ',scrollbars';
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}

function openPrintWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth + ',scrollbars,menubar';
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}

function openSizeScrollWindow(contentURL,windowName,windowWidth,windowHeight) {
	widthHeight = 'height=' + windowHeight + ',width=' + windowWidth + ',scrollbars,resizable';
	newWindow = window.open(contentURL,windowName,widthHeight);
	newWindow.focus()
}
//-->

