function popitup(url,width,height)
{
	if (width == null) { width='330';}
	if (height == null) { height='200';}
	newwindow=window.open(url,"name","height="+height+",width="+width+",scrollbars=yes,resizable=yes");
	if (window.focus) {newwindow.focus();}
}
