function jump_to(pgn) {
	if (!pgn)
		{alert ("You have selected either Program site or blank line \n Please select the program followed by > (greater than sign)");}
	else {
		window.location.href = pgn; 
		}
pgn=0;
}

function MM_openBrWindow(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
}

<!--

//set image paths
src=new Array();
src[0]="images/test.jpg"
src[1]="images/test1.jpg"
src[2]="images/test2.jpg"
src[3]="images/potala.jpg"
src[4]="images/kailash1.jpg"
//set duration for each image in seconds
duration = 3;

 slides=[];
 ct=Math.floor(Math.random()*(src.length-3));

 function switchSlide() {
 var n=(ct+1)%src.length;
 if (slides[n] && (slides[n].complete || slides[n].complete==null)) {
 if (document.all) slideimage.filters[0].apply();
 document.images.slideimage.src = slides[ct=n].src;
 if (document.all) slideimage.filters[0].play();
 }
 slides[n=(ct+1)%src.length] = new Image;
 slides[n].src = src[n];
 setTimeout("switchSlide()",duration*1000);
 }
 onload = function(){
 if (document.images)
 switchSlide();
 }
 //-->
