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