//pop up window
function windowpop() {
	window.open('myetfquotes.asp',"popdjim25","top=50,left=50,toolbar=no,width=620,height=340,status=no,scrollbars=no,resize=no,menubar=no");
}

function windowclose() {
	window.close();
}

function changeImage() {
	var args = changeImage.arguments;

	//Get the current image object
	var img = document.getElementById(args[0]);
	
	//Get the current image url
	var img_src = img.src;

	if(img_src.indexOf("arrow1.gif") > -1){
		img.src = "/images/arrow2.gif";
	}else{
		img.src = "/images/arrow1.gif";
	}
}