/* ========== METHODES GENERALES ================*/

var blank = "../img/blank.gif";
topedge = 130;  // location of news box from top of page
leftedge = 2;  // location of news box from left edge
boxheight =150;  // height of news box
boxwidth =140;  // width of news box
scrollheight =150; // total height of all data to be scrolled
cpt=0;
/*function scrollnews(cliptop) {
newsDiv =document.getElementById("testimonial_intro").style;
newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
newsDiv.pixelLeft = leftedge;
newsDiv.pixelTop = topedge - cliptop;
cliptop = (cliptop + 1) % (scrollheight + boxheight);
newsDiv.visibility='visible';
cpt++;
setTimeout("scrollnews(" + cliptop + ")", 130);
}

*/
/*function ShowPicture(page) {
	var params="width=" + 200 + ",height=" + 200 + ",resizable=1,scrollbars=1,status=0";
       window.open(page,"Agrandissement",params);
}
*/

function ShowPicture(page) {
  var top=(screen.height-200)/2;
  var left=(screen.width-200)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur);
}


function SelectDetails(id){
			document.location.href="SelectDetails.php?id="+id;
}
	
	
function SelectPrices(id){
			document.location.href="SelectPrices.php?id="+id;
}

