function showImage( id) {
	window.open( '/Image/'+id, 'image', 'toolbar=no, menubar=no, location=no, personalbar=no, scrollbars=no, directories=no, status=no, resizable=no, left=1,top=1, width=200,height=200');
}
function fitImage() {
	var o = document.getElementById( 'popupImage');
	window.resizeTo( o.width+20, o.height+20);
}
function init() {
	var a = document.getElementsByTagName( 'a');
	for (var i=0; i<a.length; i++) {
		if (a[i].className == 'linkOut') {
			a[i].onclick = function() { window.open( this.href); return( false); };
		}
	}
}

