function popitup(url,width,height,top,left) {
	newwindow=window.open(url,'name','scrollbars=1,resizable=1,width=' + width + ',height=' + height +',top=' + top + ',left=' + left +'');
if (window.focus) {newwindow.focus()}
	return false;
}