﻿function confirm_entry2()
{
input_box=confirm("Turlistan är i formatet PDF. Om du inte har Acrobat Reader\nkan du ladda hem den gratis från www.adobe.se\n\nOBS! Turlistan öppnas i ett nytt fönster\n\nVill du fortsätta?");
if (input_box==true)
{
// Output when OK is clicked
window.open("../pdf/21AB_Utowebb_A4.pdf");
}
else
{
// Output when Cancel is clicked
window.location.href="#";
}
}

function confirm_entry()
{
input_box=confirm("Tidtabellen är i formatet PDF. Om du inte har Acrobat Reader\nkan du ladda hem den gratis från www.adobe.se\n\nOBS! Tidtabellen öppnas i ett nytt fönster\n\nVill du fortsätta?");
if (input_box==true)
{
// Output when OK is clicked
window.open("../pdf/21AB_Utowebb_A4.pdf.pdf");
}
else
{
// Output when Cancel is clicked
window.location.href="#";
}
}
