
<!--

function change(id, newClass) {		  
identity=document.getElementById(id);
identity.className=newClass;			
}	

function openNewWindow(Site)
{
 NewWindow3 = window.open(Site,
  "viewwin",
  "toolbar=1,scrollbars=yes,width=600,height=300,resizable=1");
}

   
    var initID = false;
    function goTo(inputValue){
        if(initID)document.getElementById(initID).className='normal';
        document.getElementById(inputValue).className='highlight';    
        location.hash = inputValue;
        initID = inputValue;
    }
   
if (top.location != self.location) {
top.location.href = self.location.href;
}

function DoWindow(Site)
{
 NewWindow3 = window.open(Site,
  "pethealth",
  "toolbar=1,scrollbars=yes,width=600,height=300,resizable=1");
}



function mailpage()
{
  mail_str = "mailto:?subject= I found some really low prices on pet meds";
  mail_str += "&body= Low prices on pet health products, pet news, pet gifts, supplies and more";
  mail_str += ". Check it  out at, " + parent.location.href; 
  location.href = mail_str;
}
//-->


function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

// End -->



function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('Please check the box to continue.');
return false;
}else
return true;
}

function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 

//-->