<!-- Begin POP-UP SIZES AND OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var showimage_1		= "yes"		// SHOW SIDEBAR IMAGE 1
var showimage_2		= "yes"		// SHOW SIDEBAR IMAGE 2
var showimage_3		= "yes"		// SHOW SIDEBAR IMAGE 3
var spacing		= "20"		// NUDGE SIDEBAR DOWN
var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "215"		// DATE Y LOCATION


var showpaypal		= "no"			// SHOW A VIEW CART BUTTON
var paypalemail		= "your@email.com"	// YOUR PAYPAL E-MAIL


function js_clock(){

	var clock_time = new Date();
	var clock_hours = clock_time.getHours();

	var clock_minutes = clock_time.getMinutes();
	var clock_seconds = clock_time.getSeconds();
	var clock_suffix = "AM";
	if (clock_hours > 11){
		clock_suffix = "PM";clock_hours = clock_hours - 12;
	}
	if (clock_hours == 0){
		clock_hours = 12;
	}
	if (clock_hours < 10){
		clock_hours = "0" + clock_hours;
	}
	if (clock_minutes < 10){
		clock_minutes = "0" + clock_minutes;
	}
	if (clock_seconds < 10){
		clock_seconds = "0" + clock_seconds;
	}
	//document.write(clock_hours);
	//document.write(":");
	//document.write(clock_minutes);
	//document.write(":");
	//document.write(clock_seconds);
	//document.write(" ");
	//document.write(clock_suffix);
	var clock_div = document.getElementById('js_clock');
	clock_div.innerHTML = clock_hours + ":" + clock_minutes + ":" + clock_seconds + " " + clock_suffix;
	setTimeout("js_clock()", 1000);
}




// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+spacing+'" width="10"><br>')




// SMALL PICTURE AREA 1
   if (showimage_1 == "yes") {

document.write('<a href="benefits.htm"><IMG SRC="picts/sidebar-1.gif" border="0" width="110" height=97" /><br>')

document.write('Benefits</a><br>')

document.write('<br>')
}



// START SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<span class="smalltext">')

document.write('You can use this area to display information or small images.<br>')

document.write('</span><br>')

}

// END SIDEBAR AREA PARAGRAPH 1





// SMALL PICTURE AREA 2
   if (showimage_2 == "yes") {

document.write('<a href="tour-home.htm"><IMG SRC="picts/sidebar-2.gif" border="0" width="100" height="115" class=""><br>')

document.write('Product Tour</a><br>')

document.write('<br>')
}





// START SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<span class="smalltext">')

document.write('You can use this area to display information or small images.<br>')

document.write('</span><br>')

}

// END SIDEBAR AREA PARAGRAPH 2





// SMALL PICTURE AREA 3
   if (showimage_3 == "yes") {

document.write('<a href="distributers.htm#distributer"><img src="picts/sidebar-3.gif" border="0" width="96" height="126" class=""><br>')

//document.write('Bedtime Stories - <br> Must read whimsical stories for the construction industry.</a><br>')

document.write('<br>')
}



// START VIEW CART AREA

   if (showpaypal == "yes") {
document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin: 0px">');
document.write('<input type="hidden" name="cmd" value="_cart">');
document.write('<input type="hidden" name="business" value="your@email.com">');
document.write('<input type="image" src="picts/cart-view.gif" border="0" name="submit" alt="View Cart" onmouseover="this.src=\'picts/cart-viewon.gif\'" onmouseout="this.src=\'picts/cart-view.gif\'">');
document.write('<input type="hidden" name="display" value="1">');
document.write('</form><br><br>');
}

// END VIEW CART AREA




// 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("<font color=black size=\"+1\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write('<br>')
document.write('<div>');
document.write('</div>');
document.write("</nobr></font><nobr><b><font size=\"+2\" color=black><b>1-800-280-2304</b></font></nobr>")
document.write('</div>');

}



// -- END -->
