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