/*
 * yui-ext
 * Copyright(c) 2006, Jack Slocum.
 */


    // define some private variables
    var dialog;
    var lay;
    
    
    // return a public interface
	function InitDialog(){
    			dialog = new YAHOO.ext.LayoutDialog("hello-dlg", { 
                        modal:true,
                        width:760,
                        height:550,
                        shadow:true,
                        minWidth:750,
                        minHeight:300,
                        center: {
	                        autoScroll:false,
	                        tabPosition: 'top',
	                        closeOnTab: true,
	                        alwaysShowTabs: true
	                    }
                });
                dialog.addKeyListener(27, dialog.hide, dialog);
                dialog.addButton('Fermer', dialog.hide, dialog);
                
                var layout = dialog.getLayout();              
                layout.add('center', new YAHOO.ext.ContentPanel('center1', {title: 'Information'}));
            }
            
    function btnEdit(fiche,action)
    {
    	GoOnTop();
    	if(action == 'photo')
    	{
	    	document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=photo\" frameborder=\"no\" width=\"732\" height=\"450\"></iframe>";	
    	}
    	if(action == 'photo2')
    	{
	    	document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=photo&type=annonceur&IdAnnonceur="+fiche+"\" frameborder=\"no\" width=\"732\" height=\"450\"></iframe>";	
    	}
    	if(action == 'detail')
    	{
	    	document.getElementById("NumFiche").innerHTML = fiche;
	        document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=fiche_"+document.getElementById('classe').value+"&fiche="+fiche+"\" frameborder=\"no\" width=\"732\" height=\"450\"></iframe>";	
    	}
    	else if (action == 'ChangeEmail')
    	{
    		document.getElementById("NumFiche").innerHTML = 'Changemenr adresse Email';
    		document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=email&IdAnnonceur="+fiche+"\" frameborder=\"no\" width=\"732\" height=\"450\" ></iframe>";	
    	}
    	else if (action == 'MotDePasse')
    	{
    		document.getElementById("NumFiche").innerHTML = 'Mot de passe oublié';
    		document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=motdepasse\" frameborder=\"no\" width=\"732\" height=\"450\" ></iframe>";	
    	}
    	else if (action == 'message')
    	{
    		document.getElementById("center1").innerHTML  = "<iframe name=\"mainDialog\" src=\"index.php?page=message_lecture&IdMessage="+fiche+"\" frameborder=\"no\" width=\"732\" height=\"450\" ></iframe>";	
    	}
    		
    	dialog.show();
    }
    
    function CloseDialog()
    {
    	dialog.hide();
    }
    
    
YAHOO.util.Event.on(window, 'load', InitDialog);