
// openWindow(url)
// Opens a window with the specfied url
// DavidH - 27/06/2002
function openWindow(url)
{
	window.open(url, 'diagram', 'height=500, width=445, location=0, menubar=0, resizable=0, scrollbars=1, toolbar=0, status=0, location=0, fullscreen=0');
	
}