function popitup(url) 
{
	newwindow=window.open(url,'name','height=350,width=440');
	if (window.focus) {newwindow.focus()}
	return false;
}


