function popup(url,windowname,width,height)
{
 win=window.open(url,windowname,'height='+height+',width='+width+',scrollbars=yes,resizable=yes');
 if (window.focus) {win.focus()}
}