// JavaScript Document
var cur_pic=0;
var tot_image=0;
var pic_array=Array();
function show_prev_image(){
	cur_pic--;
	if(cur_pic<0)
		cur_pic=0;
	load_images();
}
function show_next_image(){
	cur_pic++;
	if(cur_pic>(tot_image-6))
		cur_pic=tot_image-6;
	load_images();
}
function add_image(img_path){
	tot_image++;
	pic_array[tot_image-1]=img_path;
}
function load_images(){
	var s="";
	for(i=0;i<6;i++){
		s=s+"<a href='#' onclick='createWindow(\"Close\", 403,\"#8d6baf\","+((cur_pic+i)+1)+", 0, 180, 350);'><img border='0' src='"+pic_array[cur_pic+i]+"' height='68' width='95'/></a>&nbsp;";
		}
		document.getElementById("image_bar").innerHTML=s;
}
