                      function openwin(url)
                            {
arglist='toolbar=no,location=no,directories=no,status=no,menubar=0,scrollbars=yes,';
arglist+='titlebar=no,resizable=yes,width=400,height=280,channelmode=0,';
arglist+=',alwaysRaised=1,dependent=1';
 
                      OpenWindow=window.open(url, "newwin", arglist);
                            }


function open_win(url,name,tp,lft,w,h) {
var atts='toolbar=no,location=0,directories=no, screenX=1,';
atts +='status=no,menubar=0,scrollbars=yes,resizable=yes,';
atts +='top='+tp+',left='+lft+',width='+w+',height='+h;
window.open(url,name,atts)
}

