function hds_big_image(image,width,height, rep, type, calendar) {
	//Popup pour afficher une image du lot plus grande
	if(rep == 99){
		rep = 'img/imagedate/';
	}
	if(type == 1){
		repertoire = "img/lots/"+rep+"/"+image+".jpg";
	}else{
		repertoire = rep+image+".gif";
	}
	
	height = height + 40;
	width = width + 20;
	newWnd = window.open("html/hpopup.html",'', 'scrollbars=yes,resizable=yes,width='+width+',height=	'+height);
	if(calendar != undefined){
		newWnd.document.write("<html><head><title>Thirdman</title></head><body style='backgroundcolor:white;'><img src="+repertoire+" alt=\"\"/><br/><a href=\"javascript:self.close();\">close window</a></html>" ); 

	}else{
		newWnd.document.write("<html><head><title>Thirdman</title><link href=\"css/main.css\" rel=\"stylesheet\" type=\"text/css\"  media=\"all\"/></head><body style='backgroundcolor:white;'><img src="+repertoire+" alt=\"\"/><br/><a href=\"javascript:self.close();\">close window</a></html>" ); 
	}
}
