<!-- 
var w = window;
function PopIt(theURL,wSize,hSize) {
	if ((w == window) || w.closed) {
		features = "toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,left=0,top=0," + wSize + "," + hSize;
		w = open(theURL,"PopIt",features);
		w.focus();
	} else {
		window.w.location = theURL;
		w.focus();
	}
}
// -->
