<!-- Begin --------------- 1-PRICECHECK/RESERVATIONS-GOUVEIA-ROOMS-------------------

function pricecheck() 
// -------------------------------------------------1 GUEST-------------------------------------------- -->
{ 

if (document.order.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order.PRICE.value = 17.50; 
} 
else if (document.order.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order.PRICE.value = 20.00; 
} 
else if (document.order.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order.PRICE.value = 25.00; 
} 
else{ 
document.order.PRICE.value = 100.00; 
} 

// -------------------------------------------------2 GUESTS-------------------------------------------- -->
{ 

if (document.order2.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order2.PRICE.value = 25.00; 
} 
else if (document.order2.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order2.PRICE.value = 30.00; 
} 
else if (document.order2.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order2.PRICE.value = 40.00; 
} 
else{ 
document.order2.PRICE.value = 100.00; 
} 



} // ----- end 1 Guest------------------ -->
} // ----- end 2 Guest------------------ -->

// End ------------------------------------------------------------------ -->


