function big_view() {
var popurl="/photoshow/view.htm"
winpops=window.open(popurl,"","width=500,height=540,")
}

function check()
{
	input_box=confirm("Sind Sie sicher?");
	if (input_box==true)

	{ 
	// Output when OK is clicked
	return true;
	}

	else
	{
	// Output when Cancel is clicked
	return false;
	}
}
