function popitup(url,name,height,width)
{
	newwindow=window.open(url,name,'height='+height+', width='+width+', menubar=no, resizable=no, scrollbars=no, toolbar=no');
	if (window.focus) {newwindow.focus()}
}