    var pictures = new Array("Doha1.jpg", "Doha2.jpg", "Doha3.jpg", "Doha4.jpg", "Doha5.jpg", "Doha6.JPG", "Doha7.jpg", "Doha8.jpg");
	var alternate1 = 0;
	function clickIcon(val)
    {
		if(val == 1)
		{
        	alternate1 = (alternate1 > 6)?0:alternate1+1;
        	document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
		if(val == 0)
		{
			alternate1 = (alternate1 < 1)?7:alternate1-1;
			document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
    }
	
	function MM_openBrWindow(theURL,winName,features) 
	{ //v2.0
  		window.open(theURL,winName,features);
	}

