function check_adres (x,y) {
	if( y=="" || y==" " )
		x.value="twój adres e-mail";
}

function przewin(el) {
	x=window.document.getElementById(el).style.top;
	y=window.document.getElementById(el).offsetHeight;
	z=parseInt(x)+parseInt(y);
	if( z>-10 ) {
		ofset=parseInt(x)-1;
		window.document.getElementById(el).style.top=ofset+"px";
	}
	else {
		window.document.getElementById(el).style.top=0;
	}
}
function idz() {	
	setInterval("przewin('box1');",100);
	//przewin('box1');
}
