function openWin(loc, w, h) { 
     feature = "width=" + w + ",height=" + h + ",scrollbars=yes"; 
     var newWin = window.open(loc, "subwin", feature);
     newWin.focus();
}
