function confirmDelete(delUrl) 
 { 
if (confirm("Potvrdite brisanje")) 
   { 
   document.location = delUrl; 
   }
 }
 
function show(id) {
      if (document.getElementById(id).style.display == '') {                               
   		  document.getElementById(id).style.display = 'none';		     
              }                         
   	 else {	        	
   		  document.getElementById(id).style.display = '';		 
              }                                          
   				   }
				   
function validate_form ( )
{
	valid = true;

        if ( document.editor.title.value == "" )
        {
                alert ( "Molimo popunite sva polja" );
                valid = false;
				
        }
		else if ( document.editor.date.value == "" )
        {
                alert ( "Molimo popunite sva polja" );
                valid = false;
        }


        return valid;
}


function ClipBoard(from, to) 
{
to.innerText = from.innerText;
Copied = to.createTextRange();
Copied.execCommand("Copy");
}


