
		
		function mark( obj, score ) {
//			alert( obj+"-"+score );
			for( var i=1; i<=5; i++ ) {
				document.getElementById('score'+i).style.border='0px solid #88aaee';
			}
			obj.style.border='2px solid #88aaee';
			document.getElementById('score').value=score;
//			alert(document.getElementById('score').value);
		}
		
		function publishReview() {
			document.getElementById('reviewForm').submit();
		}
			
		function setPicURL( pindex, purl, surl ) {
			picList[pindex] = purl;
			smallPicList[pindex] = surl;
		}
		

