function popup(url) 
{
 newwin = window.open(url,"home", "top=0, left=0, fullscreen=yes, width="+screen.width+", height="+screen.height);
 if (newwin==null) {
	return false;
 }
 if (window.focus) {
     newwin.focus();
 }
 return false;
}
