// open new window
function newWin(name,w,h,l,t,scroll,resize) { 
    window.open("",name,'toolbar=0,location=0,scrollbars=' + scroll + ',resizable=' + resize + ',width=' + w + ',height=' + h + ',left=' + l + ',top=' + t); 
}
