var newWindow = null
function emailfriendPopup(emailpage, ID){
	posleft=screen.width/2-200
	postop=screen.height/2-280
	newWindow = window.open("emailfriend.asp?emailpage="+emailpage+"&ID="+ID,"popup","resizable=no,scrollbars=no,width=450,height=280,left="+posleft+",top="+postop);
	if ( newWindow && !newWindow.closed){
		newWindow.focus();
	}
}
var newrateWindow = null
function ratetruckPopup(ID){
	posleft=screen.width/2-200
	postop=screen.height/2-280
	newrateWindow = window.open("ratetruck.asp?ID="+ID,"popup","resizable=no,scrollbars=no,width=450,height=320,left="+posleft+",top="+postop);
	if ( newrateWindow && !newrateWindow.closed){
		newrateWindow.focus();
	}
}
var click_n = 0
function rateOver(n){
	document.getElementById("r" + n).style.backgroundColor = "#E31736";
	document.getElementById("rn" + n).style.color = "#FFFFFF";
}
function rateOut(n){
	if(n!=click_n){
		document.getElementById("r" + n).style.backgroundColor = "#CCCCCC";
		document.getElementById("rn" + n).style.color = "#000000";
	}
}

function rateClick(n){
	if(n != click_n && click_n != 0){
		document.getElementById("r" + click_n).style.backgroundColor = "#CCCCCC";
		document.getElementById("rn" + click_n).style.color = "#000000";
	}
	document.getElementById("r" + n).style.backgroundColor = "#E31736";
	document.getElementById("rn" + n).style.color = "#FFFFFF";
	document.form1.Rate.value = n;
	click_n = n;
}
