// JavaScript Document
<!--
//popup window on form + link
function popup(url,theWidth,theHeight) { //v2.0
	var theWidth = Number(theWidth) + 17;
	var newHeight = Number(theHeight) + 30;
	newwindow=window.open(url,'walk','width='+theWidth+',height='+newHeight+',location=no,status=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

//-->
