<!--
function LaunchModal(url, width, height, scrollbars, resizable) {
	var modalWin = showModalDialog(url, window, 'status:No;resizable:' + resizable + ';dialogHeight:'+height+'px;dialogWidth:'+width+'px;center:Yes;help:No;');
	return modalWin;
}

function LaunchPopup(url, width, height, scrollbars, resizable, status) {
	var intXPos = (screen.width / 2) - (width / 2)
	var intYPos = (screen.height / 2) - (height / 2)
	var popUpWin = open(url, '', 'toolbar=no,menubar=no,scrollbars=' + scrollbars + ',resizable=' + resizable + ',status=' + status + ',location=no,directories=no,copyhistory=no,height='+height+',width='+width+',left='+intXPos+',top='+intYPos);
	return popUpWin;
}
	
function CloseWindow() {
	top.window.close();
}

function MaximiseWindow() {
	self.moveTo(0,0);
	self.resizeTo(screen.width, (screen.height - 30));
}

function RefreshOpener() {
	window.opener.document.forms[0].submit();
}

function RowOver(obj) {
	obj.className = 'rowselected';
}

function RowOut(obj) {
	obj.className= 'row';
}

function OpenWindow(URL, Height, Width) {
    window.open(URL, '_blank', 'height=' + Height + ',width=' + Width + ',status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes');
}


-->

