/* Function to open popup window */
var newwindow;
function popopen(page)
{
	newwindow=window.open(page,'KingfisherBarn','width=600, height=450, scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
