function confirmation(Link) {
    var answer = confirm("Do you really want to report this link as broken?")
     if (answer){
     window.location = Link;
     }
}

counter = 0;
function formControl(submitted)
{
	counter++;
	if(counter > 1) { return false; }
	return true;

}

function newWindow()
{
	termsWindow = window.open("terms.html", "termsWin", "width=355,height=310")
}

function confirmationDelete(Link) {
    var answer = confirm("Do you really want to delete this link?")
     if (answer){
     window.location = Link;
     }
}