function PlaceImage(area,path,hght,count,extra){
	 
var numOfImages = count;
var image_number=Math.round(Math.random()*numOfImages);     //randomly select an image
var fileType = ".jpg";
var image_choices = new Array();
 
for(var i=0;i<=numOfImages;i++){
	image_choices[i] = path+"/"+area+i+fileType;
	 	}
document.writeln('<IMG src='+image_choices[image_number]+' width=750 height='+hght+' name=PageImage alt=-- border=0  usemap=#giftMap >');

}