function notifyFadeout() {
	var X = document.getElementById('email').parentNode;
	if (typeof (X.counter)=='undefined') X.counter=100;
	X.counter-=Math.ceil(X.counter/4);
	X.style.opacity=X.counter/100;
	X.style.KhtmlOpacity=X.counter/100;
	X.style.filter='alpha(opacity='+X.counter+')';
	if (X.counter!=0) return setTimeout("notifyFadeout();",33);
	X.style.display='none';
}
function notify(product) {
	var email = document.getElementById('email').value;
	var Y = document.getElementById('emailName');
	Y.innerHTML=email;
	GET('rpc/notify.php',{email:email,pid:product},notifyFadeout,notifyFadeout);
}

