<!-- Hide from view

var win;
var title;

function popup(URL, Title, width, height)
{
	title = Title;
	win = window.open("", "win", "status=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + "");
	win.focus();
	win.location = URL;
}

// -->
