function change(imgNm,gif) {	
	document.images[imgNm].src = "/images/" + gif;
}

function openForm(id) {

	largeur=550;
	hauteur=412;

	NewWindow = window.open('/request-form.asp?ft=1&ws='+id,'form','width='+largeur+',height='+hauteur+',left=0,top=0,scrollbars=Yes,resizable=Yes');
	NewWindow.focus();
	screen_height = window.screen.availHeight;
	screen_width = window.screen.availWidth;
	left_point = parseInt(screen_width/2)-(largeur/2);
	top_point = parseInt(screen_height/2)-(hauteur/2);
	setTimeout('NewWindow.moveTo(left_point,top_point)',0);
	void(0);
}