// JavaScript Document

function contactForm()
{
	
	
	win = new Window('contactWindow', {className: "alphacube", title: "Contactez-nous", width:400, height:300,resizable:false,minimizable:false,maximizable:false,draggable:false, showEffect:Effect.Appear,hideEffect:Effect.Fade}); 
	
	win.setHTMLContent('Loading ...');
	
	new Ajax.Request('/fr/includes/contactForm.asp', {
	  method: 'get',
	  onSuccess: function(resp) {
		win.setHTMLContent(resp.responseText);
	  },
	  onError: function(resp) {
		win.setHTMLContent('Error');
	  }
	});		
	
	win.setDestroyOnClose(); 
	win.showCenter(true);
}