// Assorted JavaScript functions for interface support
//'height='+height+',width='+width+',resize=0'
function popitup(url,width,height) {
	newwindow=window.open(url,'name','height='+height+',width='+width+',resizable=1,scrollbars=1');
	if (window.focus) {newwindow.focus()}
	return false;
}
