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