function doc_del(doc_path,lang,year)
{
   lc_ans = window.confirm("Are you sure you want to delete this document?")
   if (lc_ans == true )
   {	   
      lc_temp = "height=150,width=550,status=no,toolbar=no,menubar=no,location=no";   
      //lc_file = "/catalog_test/" + lang + "/hist_" + year + "/" + doc_path;
	  //http://scm.oas.org/catalog_test/spanish/hist_05/sentenia%20no%201.doc
	  //lc_file = "/catalog_test/" + doc_path;	  
	  lc_path = "../catalog_test/delete.asp?doc_path=" + doc_path;
	  //alert(lc_path);
	  window.open(lc_path,null,lc_temp);	
   }
}