// JavaScript Document
<!--
var newwindow;
function poptastic(url, h, w)
{
winl = (screen.width-w)/2;
wint = (screen.height-h)/2;
if (winl < 0) winl = 0;
if (wint < 0) wint = 0;

windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +",location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes,status=no";

	newwindow=window.open(url,'northants_hygiene',windowprops);
	if (window.focus) {newwindow.focus()}
}
//-->