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