<!--
// PRELOADING IMAGES
if (document.images) {
	img_on =new Image();  img_on.src ="/images/feedback/sendfeedback.png"; 
	img_off=new Image();  img_off.src="/images/feedback/feedback.gif"; 
}

function handleOver() { 
	if (document.images) document.imgName.src=img_on.src;
}

function handleOut() {
	if (document.images) document.imgName.src=img_off.src;
}

//-->
