/* Border of image change color when mouse move over */
function borderlink(which, status){
	if (document.all||document.getElementById){
		if (status == 'over')
	 		which.style.borderColor="#ffffff"; /* eaeaea */
		else
			which.style.borderColor="#8a8c8f";
	}	
}
/* =========================== */
