function PopUpPhoto(nNo)
{
window.open('detail_photo.asp?nNo='+ nNo,'newwindow',config="height=285,width=500,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,status=0");	
}

function PopUp(nNo)
{
window.open('detail_fiche.asp?nNo='+ nNo,'newwindow',config="height=500,width=465,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,status=0");	
}

function ValidePhoto()
{
    var selectedICat = document.FInscription.ICategorie.selectedIndex;
    var selectedValueICat = document.FInscription.ICategorie.options[selectedICat].value;
    
    if(window.document.FInscription.INom.value == "")
    {
        alert("Veuillez entrer le nom de votre animal");
        window.document.FInscription.INom.focus();
        return false;
     }
     else if(window.document.FInscription.IDesc.value == "")
    {
        alert("Veuillez entrer une brève description de votre animal");
        window.document.FInscription.IDesc.focus();
        return false;
     }
     else if(selectedValueICat == "NULL")
     {
        alert("Veuillez choisir la catégorie de votre animal");
        window.document.FInscription.IDesc.focus();
        return false;
     }
     else if(window.document.FInscription.IFile.value == "")
     {
        alert("Veuillez choisir votre photo");
        window.document.FInscription.IFile.focus();
        return false;
     }
     else
        return true;
}