function newWindow(url, height, width) {
    nameW='feature'
 if (navigator.appVersion.indexOf('4') != -1) {
 // Vars for centering the new window on Version 4 Browsers
 xTop = screen.width/2 - (width/2);
 yTop = screen.height/2 - (height/2);
 window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
 } else {
 window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=150,top=200');
 }
}

function MM_displayStatusMsg(msgStr)  { //v3.0
	status=msgStr; document.MM_returnValue = true;
}

<!--

//preload images
img1 = new Image(204,36)
img1.src="images/pic_set.gif"

img2 = new Image(204,36)
img2.src="images/pic_set_1.gif"

img3 = new Image(204,36)
img3.src="images/pic_set_2.gif"

//image array
imgArray = new Array("pic_set.gif","pic_set_1.gif","pic_set_2.gif");

f = 0;

//change path to images here
imgPath = "images/";

function cycleImg(){

if(document.imgBox.complete){

f++
	if (f== imgArray.length)

		f = 0;		

		document.imgBox.src =imgPath + imgArray[f] 
		
		//change cycle time here
	  	setTimeout("cycleImg()", 5000);

	}

}

//-->

