function GetMetaValue()
{
var my_arr = document.getElementsByTagName("META");
for (var counter=0; counter<my_arr.length; counter++) {
if (my_arr[counter].name.toLowerCase() == "description")
{
my_arr[counter].content = "Mission Beach Volleyball photo galleries; AVP, CBVA, GAV, and WCBV photos";}
else if (my_arr[counter].name.toLowerCase() == "keywords")
{my_arr[counter].content = "Beach Volleyball Tournament Photos, AVP Photos,Volleyball Photos";
}
}
}