/***** JS-File for gratis-ecke.de *****/

function Bewertung(id,name)
{
	var breite = (screen.width - 300) / 2;
	var hoehe = (screen.height - 240) / 2;
	window.open("vote.php?id="+id,"Vote","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=220,top="+hoehe+",left="+breite);
}


function Fehlermeldung(id,name)
{
	var breite = (screen.width - 300) / 2;
	var hoehe = (screen.height - 300) / 2;
	window.open("error.php?id="+id,"Error","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=310,top="+hoehe+",left="+breite);
}


function ScrollToTop()
{
	var y = 0;

	if(window.pageYOffset) y = window.pageYOffset;
	else
	if(document.body && document.body.scrollTop) y=document.body.scrollTop;

	while(y > 0)
	{
		setTimeout("window.scrollBy(0,-5)",10);
		y = y-5;
	}
}
