function openw()
{
	window.open ('images/colours.jpg', 'newwindow', config='height=600, width=345, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}

function openw2(file)
{
	path = ("closeups/")
	path = path.concat(file)
	path = path.concat(".jpg")
	window.open (path, 'newwindow', config='height=410, width=435, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}


var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','width=380,height=580');
	if (window.focus) {newwindow.focus()}
}