
function viewImageFull(url, width, height) {
	width = width + 18;
	height = height + 25;
	
	var props;
	props = "toolbar=0,location=0,status=0,menu=0,scrollbars=0,resizable=1,width=" + width + ", height=" + height;
	
	window.open(url, "viewWin", props);
	return false;
}

