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