// JavaScript Document
function openwin(url, w, h) {
w1=window.open(url,'new_window','location=no,directories=no,toolbar=no,resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h);
w1.focus();
}