var howManyone = Pixone.length;
var howManytwo = Pixtwo.length;
var howManythree = Pixthree.length;
timeDelay *= 1000;
var PicCurrentoneNum = 0;
var PicCurrenttwoNum = 0;
var PicCurrentthreeNum = 0;
var PicCurrentone = new Image();
var PicCurrenttwo = new Image();
var PicCurrentthree = new Image();
PicCurrentone.src = Pixone[PicCurrentoneNum];
PicCurrenttwo.src = Pixtwo[PicCurrenttwoNum];
PicCurrentthree.src = Pixthree[PicCurrentthreeNum];
function startPix() {
PixAll = setInterval("slideshow()",timeDelay*4);
slideshow();
}
function slideshow() {
PixOne = setInterval("slideshowone()", timeDelay);
PixTwo = setInterval("slideshowtwo()", timeDelay*2);
PixThree = setInterval("slideshowthree()", timeDelay*3);
}
function slideshowone() {
	PicCurrentoneNum++;
	if (PicCurrentoneNum == howManyone) {
		PicCurrentoneNum = 0;
	}
	PicCurrentone.src = Pixone[PicCurrentoneNum];
	document["ChangingPixone"].src = PicCurrentone.src;
	clearInterval(PixOne);
}
function slideshowtwo() {
	PicCurrenttwoNum++;
	if (PicCurrenttwoNum == howManytwo) {
		PicCurrenttwoNum = 0;
	}
	PicCurrenttwo.src = Pixtwo[PicCurrenttwoNum];
	document["ChangingPixtwo"].src = PicCurrenttwo.src;
	clearInterval(PixTwo);
}
function slideshowthree() {
	PicCurrentthreeNum++;
	if (PicCurrentthreeNum == howManythree) {
		PicCurrentthreeNum = 0;
	}
	PicCurrentthree.src = Pixthree[PicCurrentthreeNum];
	document["ChangingPixthree"].src = PicCurrentthree.src;
	clearInterval(PixThree);
}

function m_itbid (u) {
    pre = "mail";
    url = pre + "to:" + u;
    document.location.href = url + "@itquot.es";
}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=480,height=380,screenX=100,screenY=100,top=100,left=100')
}
