function presentationWindow(url) {
	window.open(url, '', 'height=480,width=640,scrollbars=0,menubar=0,resizable=0,status=0,toolbar=0');
}

//-----------------------------------------------------------------

function openWindow(url, pagename, w, h, scroll) {
	var winl = 100;
	var wint = 100;

	winprops = 'height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=' + scroll + ',resizable';
	win = window.open(url, pagename, winprops);

	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//-----------------------------------------------------------------

function applicationWindow(url) {
	window.open(url, '', 'scrollbars=1,menubar=0,resizable=1,status=0,toolbar=0');
}

//-----------------------------------------------------------------

function helpWindow(url) {
	window.open('/help/help-window.cfm?helpUrl=' + url, '', 'scrollbars=1,menubar=0,resizable=1,status=0,toolbar=0');
}

//-----------------------------------------------------------------