﻿// JScript File

function changemousecursor(id){

    document.getElementById(id).style.cursor = "pointer";
    document.getElementById(id).style.cursor = "hand";
}
function showhidden(id){

   document.getElementById(id).style.visibility = "visible";
	    if(document.getElementById(id).style.display == "none" ){
	     
	  	    document.getElementById(id).style.display = "block";
	  	    }
}

function ConfirmChoice(id)
{
   answer = confirm("Do you really want to delete file?")

    if (answer !=0)
    {   
    document.getElementById(id).value = "1";
    }
    else{
    document.getElementById(id).value = "0";
    }
}

function ok(id,value) {
 
 if(document.getElementById(id).value.length > 3000)
  { 
   alert('Please enter at most 3000 charactars');
   document.getElementById(id).focus();
   return false; 
   }
 else
   return true; 
  }
