
// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE
var showimage2		= "no"		//  SHOW SECOND SIDEBAR IMAGE
var linkstop 		= "no" 		//  START LINKS AT THE VERY TOP
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		    = "right"	// DATE LEFT OR RIGHT
var dateX		    = "35"		// DATE X LOCATION
var dateY		    = "175"		// DATE Y LOCATION



document.write('<DIV id="menulocation" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (linkstop == "no") {
document.write('<img src="../picts/menu-top.gif" width="154" height="70" class="menutrans"><br>');
}



// START LINKS //

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/ADC.asp" class="menu">Adelanto Detention</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/Bail_Info.asp" class="menu">Bail Information</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/bookingsearch/BookingSearch.aspx" class="menu">Inmate Locator</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/cdc.asp" class="menu">Central Detention Center</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/GHRC.asp" class="menu">Glen Helen Rehabilitation</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/Mental_Illness.asp" class="menu">Mental Illness Arrest</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/PublicAffairs/Wanted_Persons/Wanted_Persons.asp" class="menu">Wanted Persons</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/detentions/WVDC.asp" class="menu">West Valley Detention</a>');

// COPY AND PASTE THE NEXT TWO LINES TOO ADD A NEW LINK


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="/sheriff/index.asp" class="menu">Home</a>');



// END LINKS //



document.write('</td></tr><tr><td>');
document.write('<img src="../picts/menu-bottom.gif" width="154" height="1"><br>');

document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


  if (showimage1 == "no") {
document.write('<br><br><img src="../picts/menu-picture-1.jpg" width="75" height="75" border="0"></a><br><br>');
}
   if (showimage2 == "yes") {
document.write('<img src="../picts/menu-picture-2.jpg" width="75" height="75" border="0"></a><br><br>');
}
document.write('</td></tr></table></DIV>');



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
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=\"date-font\"><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>');
  
}
  