// Javascript developed by Steve Gears Associates 
// enquiries@sgears.co.uk

function moreInfo(URL)
	{ NewWin = window.open(URL,"MoreWin","width=350,height=200,resizable=yes,scrollbars=yes");
	  NewWin.moveTo((screen.width - 350)/2, (screen.height - 200)/2 ); }

function newItem(URL)
	{ NewWin = window.open(URL,"DocWin","width=640,height=350,resizable=yes,scrollbars=yes");
	  NewWin.moveTo((screen.width - 640)/2, (screen.height - 350)/2 ); }

function newWindow(URL)
	{ pdf = window.open(URL,"pdf","width=640,height=400,resizable=yes,scrollbars=yes");
	  pdf.moveTo((screen.width - 640)/2, (screen.height - 400)/2 ); }

