function borderit(which,color){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
which.style.borderColor=color
}
}

function new_win(url,w,h){
w1=window.open(url,'new_window','resizable=yes,menubar=no,status=no,scrollbars=no,width=' + w + ',height=' + h + ',top=10,left=10');
w1.focus();
}

