<!-- Begin

// ©Copyright 2007 Global Marketing Enterprises www.globalme.biz
// Unauthorized use or sale of this script is strictly prohibited by law

var color			= "999999"				// HEADER BACKGROUND COLOR
var stripcolor		= "367BA7"				// HEADER MENU STRIPE COLOR 
var date 			= "yes" 				// SHOW DATE
var	block_imagebar	= "yes"					// BLOCK WINDOWS IMAGE BAR
var showbrand       = "no"					// SHOW GOOGLE BRANDING (SWITCH TO YES IF YOU HAVE ANY PROBLEMS)
var showsearch      = "yes"					// SHOW SEARCH BOX
var domain       	= "miamicountyin.gov"	// DOMAIN NAME OR PATH

//BLOCK WINDOWS IMAGE BAR

   if (block_imagebar == "yes") {
document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">')
}

//SET LOGO

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'"><tr><td width="125">');
document.write('<img src="../../picts/spacer.gif" HEIGHT="10" WIDTH="125"><br>');
document.write('<td align="left" valign="top">');
document.write('<a href="../../Index.html"><img src="../../picts/Probation/logo.jpg" HEIGHT="110" WIDTH="600" border="0"></a><br>');
document.write('</td><td width="10">');
document.write('&nbsp;<br>');
document.write('</td></tr><tr><td bgcolor="#'+stripcolor+'" colspan="2" height="30" align="right">');
document.write('<TABLE cellpadding="0" cellspacing="4" border="0"><tr><td><br>');


// START HORIZONTAL LINKS 

//document.write('</td><td>');
//document.write('<a href="../../SiteMap.htm" class="menuhorz">Site Map</a>');

//document.write('</td><td>');
//document.write('<a href="../../Courts.htm" class="menuhorz">Courts</a>');

//document.write('</td><td>');
//document.write('<a href="../../Departments.htm" class="menuhorz">Departments</a>');

//document.write('</td><td>');
//document.write('<a href="staff.htm" class="menuhorz">Contact Us</a>');

//document.write('</td><td>');
//document.write('<a href="../../news.htm" class="menuhorz">News</a>');

//document.write('</td><td>');
//document.write('<a href="Index.html" class="menuhorz">Probation Home</a>');

document.write('</td></tr></table>');
document.write('</td><td width="10" bgcolor="#'+stripcolor+'">');
document.write('&nbsp;<br>');
document.write('</td></tr></table>');



// START DATE SCRIPT

   if (date == "yes") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"headermenu\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}

// START GOOGLE SITE SEARCH

   if (showsearch == "yes") {
document.write('<form action="http://www.miamicountyin.gov/search.htm" id="cse-search-box">');
document.write('<div id="search-location">');
document.write('<input type="hidden" name="cx" value="016736934643541908363:lr8neq97bsg" />');
document.write('<input type="hidden" name="cof" value="FORID:9" />');
document.write('<input type="hidden" name="ie" value="UTF-8" />');
document.write('<input type="text" name="q" size="31" />');
document.write(' ');
document.write('<input type="submit" name="sa" value="Search Our Site" />');
document.write(' ');
document.write('<a href="http://www.miamicountyin.gov/Departments/InformationTech/SiteSearchHelp.htm"><img src="http://www.miamicountyin.gov/picts/help.gif" HEIGHT="20" WIDTH="20" border="0" ALT="Click here to get help on using our site search engine."></a><br>');
document.write('</div>');
document.write('</form>');

}

//  End -->