

var CurrSpeed;

function fnShowImage(img){
	with(document.aspnetForm){
		if(img==0){
			MainImage.src=listingPath+"File7.jpg";
		}else{
			MainImage.src=img.src
		}
	}
}

function fnShowImage2(img, mainimg){
	with(document.aspnetForm){
		if(img==0){
			MainImage.src=listingPath+mainimg;
		}else{
			MainImage.src=img.src
		}
	}
}

function OpenPopup(URL, width, height) {
	window.self.name = "main";
	var now = new Date();
	var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=no");
}


function fnChangeSpeed(div){
		var selOpt=CurrSpeed;
		var URL=selOpt.value;
		var width=0;
		var height=0;
		if(URL.length==0){
			return;
		}
		if(URL.indexOf("Movie1")>0){
			width=600;height=600;
		}
		if(URL.indexOf("Movie2")>0){
			width=640;height=650;
		}
		if(URL.indexOf("Movie3")>0){
			width=640;height=650;
		}
		var now = new Date();

		var remote = window.open(URL, "popup" + now.getTime(), "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=no");

}
