function OpenWin(URL,width,height){
    var Features ="'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+ width +",height="+ height +"'";
    var NewWin = window.open(URL,Math.random(),Features);
    NewWin.focus();
}