var newItem;
function newWindow(url)
	{
	newItem = window.open(url, 'Item', 'width=700, height=700, status=no, resizable=yes');
	newItem.focus();
	}

function smallWindow(url)
	{
	newItem = window.open(url, 'Item', 'width=700, height=400, status=no, resizable=yes');
	newItem.focus();
	}