var thumbWindow='';
var linkWindow='';
var picture="";
var caption='';

function thumb(id){
	var file=id;
	caption=eval(id).caption;
	picture= "<IMG SRC='Image/"+file+".JPG'><br><span id='capt'></capt>";

	if (! thumbWindow) {
		thumbWindow=window.open("thumb.htm", "thumbWindow","width=520, height=560, top=10, left=10, resizable=0, toolbar=0, scrollbars=0, status=0");
	} else {
		thumbWindow.place.innerHTML='';
		thumbWindow.focus();
		thumbWindow.place.innerHTML=picture;
		thumbWindow.capt.innerText=caption;
	}
}

function Changed() {
	if (thumbWindow) {
		thumbWindow.close();
	}
}

function link(file){
	linkWindow=window.open("http://"+file, "linkWin"," width=700, height=500, top=10, left=10, resizable=1, toolbar=1, scrollbars=1, status=0");
}