 function openNewWindow(path,hight1,width1)
{
   window.open(path,"_blank",
      "height="+hight1+"px width="+width1+"px, top=100, left=100, resizable=no, scrollbars=yes,toolbar=no,status=no,menubar=no");
      
}



function textCounter(field,cntfield,maxlimit)
{
    if (document.getElementById(field).value.length > maxlimit)
    document.getElementById(field).value = document.getElementById(field).value.substring(0, maxlimit);
    else
    document.getElementById(cntfield).value = maxlimit - document.getElementById(field).value.length;
}

