// JavaScript Document

function image_viewer(src, width, height){
	var img_viewer = window.open(src, 'ImageViewer', 'resizable=0, height='+height+', width='+width+', status=0, toolbar=0, location=0, directories=0');
	if(!img_viewer){
		alert('It appears you have Pop-Ups turned off. To view this image you will need to enable them.');
	}
	return false;
}
