<!--
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 RowOver(obj) {
	obj.className = 'rowselected';
}

function RowOut(obj) {
	obj.className= 'row';
}

-->