<!--

function slideshow(pic, xml) {
	var deltaX = -5;
	var deltaY = -25;
	var dx=window.screen.availWidth - deltaX;
	var dy=window.screen.availHeight - deltaY + 10;
	var location = 'slideshow_popup.htm?pic=' + pic + '&xml=' + xml;
	var w = window.open(location, 'slidespop', 'width=' + dx + ',height=' + dy + ',status=no,resizable=yes,menubar=no,location=no,scrollbars=no,toolbar=no');
	w.moveTo(deltaX,deltaY);
	w.focus();
}

function popup(location) {
	var dx=590;
	var dy=360;
	var w = window.open(location, 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=yes,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}

function popDown(location) {
	window.opener.location = location;
	window.opener.focus();
}	

//-->