function openWin(url, windowname, w, h) {
 newWin=window.open(url, windowname, 'resizable=0,location=0,directories=0,status=0,dependent=1,menubar=0,scrollbars=0,toolbar=0,width=' + w + ',height=' + h);

 newWin.focus()
 }

