<!-- 

function checkArtistLink(){
    alert('aaa');
  // window.open("show_vcard.php?calid=" + calid, "vcard", 'width=640,height=460,location=no,toolbar=no,scrollbars=no');
  artist_name = document.theform_artist.artist_name.value;
  artist_lastname = document.theform_artist.artist_lastname.value;
  
  window.open("checklink.php?name=" + artist_name + "&last="+artist_lastname, "link", 'width=640,height=460,location=no,toolbar=no,scrollbars=no');
}

function chooseArtist(gal){
  window.opener.document.theform.artist_link2.value="http://www.svenskakonstnarer.se/start/opengal.php?aid=" + gal;
  window.close();
}


function cleanSvk(){
  window.document.theform.artist_link2.value="";
}


function suredelete(chr, aid){
  if (confirm("Är du säker på att du vill radera denna posten?")) {
    window.location="deleteartist.php?id="+aid+"&char="+chr;
  }
}


function checkLexikon(theForm){
 if( theForm.artist_name.value=="" ||  theForm.artist_lastname.value=="" || theForm.artist_bio.value=="" ){
   alert("Fyll i alla obligatoriska fält");
   return(false);
 }

 return(true);
}



// -->
