var intervalID=null;
images=new Array();
m=still_total
function change(n){
	if (n==-1) n=parseInt(document.form.image_number.value)-1;
	if (n==m) n=parseInt(document.form.image_number.value)+1;
	if (n<0) n=n+m;
	if (n>=m) n=n-m;
	window.clearInterval(intervalID);
	if (window.createPopup) p1.filters[0].apply()
	document.images.p1.src=still_location_c[n];
	if (window.createPopup) p1.filters[0].play()

	document.p1.width=still_w_c[n];
	document.p1.height=still_h_c[n];
	photo_name.innerText=still_title[n];
	document.form.image_number.value=n;
}
function change_big(n){
	if (n==-1) n=parseInt(document.form.image_number.value)-1;
	if (n==m) n=parseInt(document.form.image_number.value)+1;
	if (n<0) n=n+m;
	if (n>=m) n=n-m;
	window.clearInterval(intervalID);
	if (window.createPopup) p1.filters[0].apply()
	document.images.p1.src=still_location_big[n];
	if (window.createPopup) p1.filters[0].play()

	document.p1.width=still_w_big[n];
	document.p1.height=still_h_big[n];
	photo_name.innerText=still_title[n];
	document.form.image_number.value=n;
}
function openwindow(url){
	height = screen.height - 27;
	width = screen.width - 10;
	window.open(url, "still_big", "width="+width+", height="+height+", location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no, left=0, top=0");
}
