/************************************************************************************
	(c) Jason Hahn 2007

	This script was written by Jason Hahn, and is copyrighted material.  Unauthorized use is strictly prohibited.  For more information and pricing please contact us at jason@jasonhahn.com
*************************************************************************************/


function workshops() {

var p1 = document.myform2.os0.value;
var p2 = document.myform2.tourname.value;


/*******************Grizzlies of Yellowstone***************************/

if (p1 == "NA" && p2 == "Grizzlies of Yellowstone") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Grizzlies of Yellowstone") {
document.myform2.amount.value = "500.00";
}

else  if (p1 == "Pay in Full" && p2 == "Grizzlies of Yellowstone") {
document.myform2.amount.value = "1895.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Grizzlies of Yellowstone") {
document.myform2.amount.value = "1395.00";
}

/********************Coastal Brown Bears of Alaska**************************/

else if (p1 == "NA" && p2 == "Coastal Brown Bears of Alaska") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Coastal Brown Bears of Alaska") {
document.myform2.amount.value = "1000.00";
}

else  if (p1 == "Pay in Full" && p2 == "Coastal Brown Bears of Alaska") {
document.myform2.amount.value = "3995.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Coastal Brown Bears of Alaska") {
document.myform2.amount.value = "2995.00";
}


/********************Wild Mustangs of the Rockies**************************/

else if (p1 == "NA" && p2 == "Wild Mustangs of the Rockies") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Wild Mustangs of the Rockies") {
document.myform2.amount.value = "500.00";
}

else  if (p1 == "Pay in Full" && p2 == "Wild Mustangs of the Rockies") {
document.myform2.amount.value = "1995.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Wild Mustangs of the Rockies") {
document.myform2.amount.value = "1495.00";
}


/********************Yellowstone & the Tetons in the Fall**************************/

else if (p1 == "NA" && p2 == "Yellowstone & the Tetons in the Fall") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Yellowstone & the Tetons in the Fall") {
document.myform2.amount.value = "350.00";
}

else  if (p1 == "Pay in Full" && p2 == "Yellowstone & the Tetons in the Fall") {
document.myform2.amount.value = "2095.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Yellowstone & the Tetons in the Fall") {
document.myform2.amount.value = "1745.00";
}



/********************Battling Bighorns**************************/

else if (p1 == "NA" && p2 == "Battling Bighorns") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Battling Bighorns") {
document.myform2.amount.value = "250.00";
}

else  if (p1 == "Pay in Full" && p2 == "Battling Bighorns") {
document.myform2.amount.value = "1295.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Battling Bighorns") {
document.myform2.amount.value = "1045.00";
}




/********************Yellowstone Spring**************************/

else if (p1 == "NA" && p2 == "Yellowstone Spring - The Bears of Yellowstone") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Yellowstone Spring - The Bears of Yellowstone") {
document.myform2.amount.value = "350.00";
}

else  if (p1 == "Pay in Full" && p2 == "Yellowstone Spring - The Bears of Yellowstone") {
document.myform2.amount.value = "1795.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Yellowstone Spring - The Bears of Yellowstone") {
document.myform2.amount.value = "1445.00";
}




/********************Winter in Yellowstone**************************/

else if (p1 == "NA" && p2 == "Yellowstone Winter - The Wolves of Yellowstone") {
document.myform2.amount.value = "0";
}
else  if (p1 == "Deposit" && p2 == "Yellowstone Winter - The Wolves of Yellowstone") {
document.myform2.amount.value = "350.00";
}

else  if (p1 == "Pay in Full" && p2 == "Yellowstone Winter - The Wolves of Yellowstone") {
document.myform2.amount.value = "1795.00";
}


else  if (p1 == "Pay Balance less Deposit" && p2 == "Yellowstone Winter - The Wolves of Yellowstone") {
document.myform2.amount.value = "1445.00";
}


}

