// JavaScript Document
function popitup(url, name, hh,ww) {
	newwindow=window.open(url,name,'height='+hh+',width='+ww+',resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}
