<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var sidewidth		= "150"		// SIDEBAR WIDTH (also edit CSS)
var pageheight		= "125"		// INCREASE PAGE HEIGHT

var notes1		= "yes"		// SHOW 1ST NOTES
var notes2		= "yes"		// SHOW 2ND NOTES

// TEMPLATE DATE

var showd		= "yes"  	// SHOW THE DATE
var dateLR		= "right"  	// DATE LEFT OR RIGHT
var dateX		= "15"  	// DATE X LOCATION
var dateY		= "133"  	// DATE Y LOCATION


// FLASH CHANGER OPTIONS

var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "D2D1CC"	// FLASH BACKGROUND COLOR
var flashwC		= "150"		// WIDTH OF THE FLASH CHANGER
var flashhC		= "125"		// HEIGHT OF THE FLASH CHANGER
var bordercolor		= "A49C98"	// FLASH CHANGER BOTTOM BORDER COLOR

function getCookie(c_name) {
if (document.cookie.length>0) {
  c_start=document.cookie.indexOf(c_name + "=")
  if (c_start!=-1) { 
    c_start=c_start + c_name.length+1 
    c_end=document.cookie.indexOf(";",c_start)
    if (c_end==-1) c_end=document.cookie.length
    return unescape(document.cookie.substring(c_start,c_end))
    } 
  }
return ""
}
if(getCookie('login')!='') {
	var UserInfo = "<b><span class=\"user_large\">"+getCookie('user_name')+"</span></b><br><span class=\"user_small\">Status: "+getCookie('member_status')+"<br><a href=\"order.php\">Available Searches:"+getCookie('searches_left')+"</a><br><a href=\"log.php\">Searches Done:"+getCookie('searches_done')+"</a></span>";
} else {
	var UserInfo ="";
}
document.write('<TABLE width="150" height="125" cellpadding="0" cellspacing="0" border="0" style="border-bottom: #'+bordercolor+' 1px solid;"><tr BGCOLOR="#D2D1CC"><td valign="top" class="note-text"><BR>');
document.write('<DIV id=\"UserInfo\" visibility: hidden>' + UserInfo + '</div>');
document.write('</td></tr></table>');

document.write('<br>');


// 1st NOTES AREA
if (notes1 == "yes") {
	document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');
	document.write('HOW IT WORKS<br>');
	document.write('</td></tr><tr><td class="note-text">');
	document.write('Register to our website using "REGISTER" page from top menu. Once registered we will confirm your userid and password with an email sent to you. Go to the ‘order page’ and place your order according to the number of searches you need. Say you need 50 searches, select "Skip 50" then proceed to the payment page.  After paying using PayPal, follow PayPal instructions and return to the website and begin searching by going to the "SEARCH" page. You can search by name, address or social security number. Our system keeps track of the searches you have completed and deducts this amount from the amount purchased.');
	document.write('<br><a href="register.htm">Register now  &gt;&gt;</a><br>');
	document.write('</td></tr></table>');
	document.write('<br><br>');
}
// 1nd NOTES AREA
if (notes2 == "yes") {
	document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');
	document.write('PEOPLE SEARCH<br>');
	document.write('</td></tr><tr><td class="note-text">');
	document.write('You enter in the name, city, state, and zip (If available) and we provide the most current address for this person.<br>');
	document.write('<br>Once you login into our system you can always view your last three searches and number of available searches left on your account by clicking on the link left side of the page under user name.<br><br>Available Searches: <BR>Searches Done:<br>');
//	document.write('<br><a href="contact.htm">click here to see example of report &gt;&gt;</a><br>');
	document.write('</td></tr></table>');
	document.write('<br><br>');
}




// START DATE SCRIPT


   if (showd == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
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(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



document.write('<img src="picts/spacer.gif" width="'+sidewidth+'" height="'+pageheight+'"></a><br>');


//  End -->