var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n<link rel="stylesheet" href="http://highlandbison.com/ss/printer.css" type="text/css" media="print">\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY class="printBody">\n';
		
		var contentElem = document.getElementById("content");
		
		if (contentElem != null)
		{
				html += contentElem.innerHTML;
		}
		else
		{
			alert("Could not find the print section in the page.");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in working browsers.");
	}
}

function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=Hi, ";
mail_str += "I think you might be interested in the " + document.title;
mail_str += ". You can view it at " + location.href; 
location.href = mail_str;
}

function viewDiv(id){
 var id2 = id+"a";
  document.getElementById(id).style.display = (document.getElementById(id).style.display == 'block') ? 'none' : 'block';
  document.getElementById(id2).src = (document.getElementById(id).style.display == 'block') ? 'http://highlandbison.com/images/b.gif' : 'http://highlandbison.com/images/b.gif';}

function viewDiv2(id){
  document.getElementById(id).style.display = (document.getElementById(id).style.display == 'block') ? 'none' : 'block';
}

function hideDiv(id){
  document.getElementById(id).style.display = (document.getElementById(id).style.display == 'none') ? 'block' : 'none';
}



function google(){

google_ad_client = "pub-9842723352980577";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "F9F9F9";
google_color_bg = "F9F9F9";
google_color_link = "000000";
google_color_text = "9f4c18";
google_color_url = "0066CC";

}

function checkrequired(which){
var pass=true
if (document.images){
for (i=0;i<which.length;i++){
var tempobj=which.elements[i]
if (tempobj.name.substring(0,8)=="required"){
if (((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1)){
pass=false
break
}
}
}
}
if (!pass){
alert("One of the required fields is not completed. Please complete it, then submit again!")
return false
}
else
return true
}

