// JavaScript Document

var width = 250;
var height = 100;
var imgAr1 = new Array();

var slide;

function popUp(src,w,h) {
	SmallWin=window.open(src,"SmallWin","toolbar=no,directories=no,status=no, scrollbars=no,menubar=no,width=" + w + ",height=" + h); SmallWin.window.focus()
}	

function setting()
{
	slide = document.getElementById('pic');

	if(slide)
		slide.src = imgAr1[0][0];
	//slide.setAttribute("width",width);
	//slide.setAttribute("height",height);
}
//Image or picture slide show using java script
//slideshow function
var picture = 0;
function slideshow(){
	if(picture < imgAr1.length-1){
		picture=picture+1;
		slide.src = imgAr1[picture][0];
	}
}

function prev(){
	if(picture > 0 ){
		picture=picture-1;
		slide.src = imgAr1[picture][0];
	}
}

function verImagen()
{
	popUp('?page=VerFoto&c=' + imgAr1[picture][1],300,300);
}
