/******************************************************************************
 *
 *                   INDIGEN SOLUTIONS PROPRIETARY INFORMATION
 *       This software is supplied under the terms of a license agreement or
 *       nondisclosure agreement with Indigen Solutions and may not be copied
 *       or disclosed except in accordance with the terms of that agreement.
 *            Copyright (c) 2004 Indigen Solutions. All Rights Reserved.
 *
 * Author    : Jerome CLERICO (jerome.clerico@indigen.com)
 *
 * File name :
 *
 * Abstract  : 
 *
 * RCS Id                       $Id: function.js,v 1.1.1.1 2005/06/15 08:26:28 indigen Exp $
 * RCS Revision                 $Revision: 1.1.1.1 $
 * RCS Check in date            $Date: 2005/06/15 08:26:28 $
 * RCS State                    $State: Exp $
 * RCS Author                   $Author: indigen $
 * RCS Locked by                $Locker:  $
 *
 ******************************************************************************/

function showSalon(line, id) {
    line.style.backgroundColor = '#0067c6';
    line.style.color = 'white';
    var destPanel = document.getElementById("details");
    var srcPanel = document.getElementById("salon_" + id);
    destPanel.innerHTML = srcPanel.innerHTML;        
}

function hideSalon(line, id) {
    line.style.backgroundColor = '';
    line.style.color = '';
}


function validForm(){
    return true;
}

function showInput(sel){
    //alert('yo!!');
    //alert (sel.options[sel.selectedIndex].value);
    if(sel.options[sel.selectedIndex].value == 'other'){
	//alert('other');
	//doc.write("salut");
	//echo 'salut';
	var destPanel = document.getElementById("zoneother");
	//var td1 = document.createElement("td");
	//var td2 = document.createElement("td");
	//destPanel.appendChild(td1);
	//destPanel.appendChild(td2);
	destPanel.innerHTML = 'Si autre précicez : <input name="otherzone" type="text">';
    }
    else {
	var destPanel = document.getElementById("zoneother");
	destPanel.innerHTML = "";
	
    }
    
}

