function popup_scroll( url,xw,yw,F_name,xt,xl){
    var params = "resizable=no,status=no ,scrollbars= yes ,height=" + yw + ",width=" + xw +",top="+xt+" ,left="+xl;
    pop2 = window.open(url,F_name,params);
    pop2.focus();
}
function popup_noscroll(url,xw,yw,F_name,xt,xl){
    var params = "resizable=no,status=no,scrollbars= no ,height=" + yw + ",width=" + xw +", top="+xt+" ,left="+xl;
    pop2 = window.open(url,F_name,params);
    pop2.focus();
}
function setVal(Id, obj ){
          parent.document.getElementById(Id).value = obj.value;
}
