function openWin(url,name,w,h,scroll,resize) 
{    
    var att = 'width='+ w +',height='+ h +',scrollbars='+ scroll +',resizable='+ resize;
    window.open(url,name,att);
}