function popup(url)
{
	newwindow=window.open(url,'name','height=400,width=540');
	if(window.focus)
	{
		newwindow.focus()
	}
	return false;
}