function openPopup(url,name,props)
{
 var n = ""+name;
 var p = ""+props;
 if (n.length == 0) name = "Info";
 if (p.length == 0) props = "width=100,height=100,location=no,menubar=no,scrollbars=no,resizable=no";
 win = window.open(url,name,props);
 win.moveTo(0,0);
}
