function getStar(off){
var toprate = 5;
	for(i = 0; i < off; i++){
			document.write(staroff);
	}
	for(n = 0; n < (toprate-off); n++){
		document.write(staron);
	}

}
function ckReviewForm(){
var theform = document.reviewform;
var inpname = theform.reviewname;
var inpmess = theform.reviewmessage;
var inpurl = theform.url;
var prodname = theform.prodname;
var to = theform.to;
	if(inpname.value==""){
		alert("Please enter your name!")
		inpname.focus();
		return false;
	}
	if(inpmess.value==""){
		alert("Please enter a message!")
		inpmess.focus();
		return false;
	}
	inpurl.value = document.location.href
	prodname.value = prname
	to.value = emailto
}