// JavaScript Document
<!--
//popup window on footer links
function popup(url,winname,theWidth,theHeight) {

	window.name="main" //name of parent window
	var theWidth = Number(theWidth) + 30;
	var newHeight = Number(theHeight) + 30;
	newwindow=window.open(url,winname,'width='+theWidth+',height='+newHeight+',resizable=yes,location=no,status=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

//-->