<!-- Begin --------------- 1-PRICECHECK/RESERVATIONS-GOUVEIA-------------------

function pricecheck() 
// -------------------------------------------------1 GUEST-------------------------------------------- -->
{ 

if (document.order.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order.PRICE.value = 25.00; 
} 
else if (document.order.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order.PRICE.value = 30.00; 
} 
else if (document.order.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order.PRICE.value = 35.00; 
} 
else{ 
document.order.PRICE.value = 100.00; 
} 

// -------------------------------------------------2 GUESTS-------------------------------------------- -->
{ 

if (document.order2.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order2.PRICE.value = 40.00; 
} 
else if (document.order2.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order2.PRICE.value = 42.00; 
} 
else if (document.order2.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order2.PRICE.value = 50.00; 
} 
else{ 
document.order2.PRICE.value = 100.00; 
} 

// -------------------------------------------------3 GUESTS-------------------------------------------- -->
{ 

if (document.order3.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order3.PRICE.value = 65.00; 
} 
else if (document.order3.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order3.PRICE.value = 70.00; 
} 
else if (document.order3.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order3.PRICE.value = 75.00; 
} 
else{ 
document.order3.PRICE.value = 100.00; 
} 

// -------------------------------------------------4 GUESTS-------------------------------------------- -->
{ 

if (document.order4.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order4.PRICE.value = 80.00; 
} 
else if (document.order4.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order4.PRICE.value = 85.00; 
} 
else if (document.order4.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order4.PRICE.value = 100.00; 
} 
else{ 
document.order4.PRICE.value = 200.00; 
} 

// -------------------------------------------------5 GUESTS-------------------------------------------- -->
{ 

if (document.order5.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order5.PRICE.value = 100.00; 
} 
else if (document.order5.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order5.PRICE.value = 120.00; 
} 
else if (document.order5.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order5.PRICE.value = 125.00; 
} 
else{ 
document.order5.PRICE.value = 200.00; 
} 

// -------------------------------------------------6 GUESTS-------------------------------------------- -->
{ 

if (document.order6.QUANTITY.value >= 15) // ----- 15 Nights or more-------------- -->
{document.order6.PRICE.value = 120.00; 
} 
else if (document.order6.QUANTITY.value >= 8) // ----- 8-14 Nights------------------ -->
{document.order6.PRICE.value = 127.50; 
} 
else if (document.order6.QUANTITY.value >= 1) // ----- 1-7 Nights------------------ -->
{document.order6.PRICE.value = 150.00; 
} 
else{ 
document.order6.PRICE.value = 200.00; 
} 

} // ----- end 1 Guest------------------ -->
} // ----- end 2 Guest------------------ -->
} // ----- end 3 Guest------------------ -->
} // ----- end 4 Guest------------------ -->
} // ----- end 5 Guest------------------ -->
} // ----- end 6 Guest------------------ -->
// End ------------------------------------------------------------------ -->

