//<!--
//opens popup window for the slide show
var newwindow = '';

function openWindow(url,name,attrib)
{
	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,name,attrib);
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
}
//-->