<!--
function fullsize(fileURL, wide, high) {
var url = '';
url = fileURL + '&w=' + wide + '&h=' + high;
var properties = '';
properties = 'width=' + wide + ',height=' + high + ',toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,location=no';
newWin = window.open(url,'fullImage',properties);
newWin.focus();
}
//-->
