/******** thumbs.js** (c) 2003, Radiant Core. All Rights Reserved.************************************************/function photoPopup( targetImage, desc, width, height ){	var url = 'resources/photoPopup.jsp?target=' + targetImage + '&desc=' + desc + '&width=' + width + '&height=' + height;	width = parseInt(width) + 50;	height = parseInt(height) + 145;	var options = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + width + ',height=' + height + ',left=20,top=20';	window.open( url, 'RadiantCore', options );}
