function board(){
if (document.calc.Accommodation[5].selected){
Line3_print="full board";
document.calc.Productline3.selectedIndex=0;
Line8_print="Hotel Arcadia";
}
if (document.calc.Accommodation[1].selected){
Line3_print="full board";
document.calc.Productline3.selectedIndex=0;
Line8_print="Hotel Victoria";
}
if (document.calc.Accommodation[2].selected){
Line3_print="half board";
document.calc.Productline3.selectedIndex=1;
Line8_print="Hotel Marvel";
}
if (document.calc.Accommodation[3].selected){
Line3_print="half board";
document.calc.Productline3.selectedIndex=1;
Line8_print="Hotel Sitges Park";
}
if (document.calc.Accommodation[4].selected){
Line3_print="half board";
document.calc.Productline3.selectedIndex=1;
Line8_print="Hotel Solimar";
}
}

