var newItem;
function newWindow(url)
	{
	newItem = window.open(url, 'Item', 'width=600, height=600, status=no, resizable=no, location=no, scrollbars=yes, toolbar=no, menubar=no');
	newItem.focus();
	}

