function bhrtmouseover()
{
document.bhrt.src="images/dreamstime_2349006small_mouse_over.jpg";
}

function bhrtmouseout()
{
document.bhrt.src="images/dreamstime_2349006small.jpg";
}

function cardiologymouseover()
{
document.cardiology.src="images/dreamstime_3073105_mouse_over.jpg";
}

function cardiologymouseout()
{
document.cardiology.src="images/dreamstime_3073105.jpg";
}

function hospicecaremouseover()
{
document.hospicecare.src="images/dreamstime_4972401_mouse_over.jpg";
}

function hospicecaremouseout()
{
document.hospicecare.src="images/dreamstime_4972401.jpg";
}

function pediatricsmouseover()
{
document.pediatrics.src="images/dreamstime_2218655_mouse_over.jpg";
}

function pediatricsmouseout()
{
document.pediatrics.src="images/dreamstime_2218655.jpg";
}

function veterinarymouseover()
{
document.veterinary.src="images/dreamstime_2447398_mouse_over.jpg";
}

function veterinarymouseout()
{
document.veterinary.src="images/dreamstime_2447398.jpg";
}

function sportsmedicinemouseover()
{
document.sportsmedicine.src="images/dreamstime_2168303_mouse_over.jpg";
}

function sportsmedicinemouseout()
{
document.sportsmedicine.src="images/dreamstime_2168303.jpg";
}

function dermatologymouseover()
{
document.dermatology.src="images/dreamstime_2807417_mouse_over.jpg";
}

function dermatologymouseout()
{
document.dermatology.src="images/dreamstime_2807417.jpg";
}

function validation()
{
if (document.refill.rx1.value == "")
{
	alert ( "You failed to enter your refill number." );
	return false;
}
else
{
	return true;
}
if (document.refill.name1.value == "")
{
	alert ( "You failed to enter your first name." );
	return false;
}
else
{
	return true;
}
if (document.refill.name2.value == "")
{
	alert ( "You failed to enter your last name." );
	return false;
}
else
{
	return true;
}
if (document.refill.email.value == "")
{
	alert ( "You failed to enter your e-mail address." );
	return false;
}
else
{
	return true;
}
if (document.refill.number.value == "")
{
	alert ( "You failed to enter your phone number." );
	return false;
}
else
{
	return true;
}
if (document.refill.address1.value == "")
{
	alert ( "You failed to enter your address." );
	return false;
}
else
{
	return true;
}
if (document.refill.city.value == "")
{
	alert ( "You failed to enter your city." );
	return false;
}
else
{
	return true;
}
if (document.refill.state.value == "")
{
	alert ( "You failed to enter your state." );
	return false;
}
else
{
	return true;
}
if (document.refill.zipcode.value == "")
{
	alert ( "You failed to enter your zip code." );
	return false;
}
else
{
	return true;
}
if ( document.refill.birthmonth.selectedIndex == 0 )
{
     alert ( "Please select your birth month." );
     return false;
}
else
{
	return true;
}
}
function openForm(form)
{
if ((form == "event") && (document.getElementById("eventButton").value == "Add Event"))
{
document.getElementById("eventForm").style.display = "block";
document.getElementById("blogForm").style.display = "none";
document.getElementById("blogButton").value = "Add Blog Entry";
document.getElementById("eventButton").value = "Close Add Event Form";
}
else if ((form == "event") && (document.getElementById("eventButton").value == "Close Add Event Form"))
{
document.getElementById("eventForm").style.display = "none";
document.getElementById("eventButton").value = "Add Event";
}
else if ((form == "blog") && (document.getElementById("blogButton").value == "Close Add Blog Entry Form"))
{
document.getElementById("blogForm").style.display = "none";
document.getElementById("blogButton").value = "Add Blog Entry";
}
else if ((form == "blog") && (document.getElementById("blogButton").value == "Add Blog Entry"))
{
document.getElementById("blogForm").style.display = "block";
document.getElementById("eventForm").style.display = "none";
document.getElementById("eventButton").value = "Add Event";
document.getElementById("blogButton").value = "Close Add Blog Entry Form";
}
else
{}
}