<!-- 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 paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "no"		// SHOW A SIDEBAR IMAGE
var spacing		= "1"		// NUDGE SIDEBAR DOWN
var bordercolor		= "FFFFFF"	// SCROLLER AND IMAGE BORDER COLOR

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "left"	// DATE LEFT OR RIGHT
var dateX		= "5"		// DATE X LOCATION
var dateY		= "55"		// DATE Y LOCATION
var showtime		= "yes"		// SHOW TIME ON THE PAGE
var timeLR		= "left"	// TIME LEFT OR RIGHT
var timeX		= "5"		// TIME X LOCATION
var timeY		= "70"		// TIME Y LOCATION

var showsearch		= "no"		// SHOW THE SEARCH FORM
var searchLR		= "left"	// SEARCH FORM LEFT OR RIGHT
var searchX		= "10"		// SEARCH FORM X LOCATION
var searchY		= "150"		// SEARCH FORM Y LOCATION
var searchwidth		= "160"		// WIDTH OF THE SEARCH FORM
var searchtext		= "Web Search"	// TEXT ABOVE SEARCH FORM


var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "0F0066"	// FLASH BACKGROUND COLOR
var flashwidth		= "150"		// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var flashheight		= "150"		// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)



// EDIT THE "scroller/scroll.variables0.js" FOR SCROLLER OPTIONS


// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+spacing+'" width="10"><br>')




// START SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<span class="sidebartitle">')

document.write('G\'n\'G P.O.E.M.S., L.L.C.')

document.write('<br><br>')

document.write('Our Goal')

document.write('<br></span><span class="sidebartext">')

document.write('Provide high quality, personalized, and cost efficient health care to each employee/patient/claimant and work closely with employers and/or their insurance carriers.<br>')

document.write('<a href="contact.htm" class="sidelink">Contact Us</a><br>')

document.write('</span><br><br>')

}
// END SIDEBAR AREA PARAGRAPH 1






// FLASH CHANGER
   if (showsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse:collapse"><tr><td valign="top">')
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="imagechanger" ALIGN="">')
document.write('<PARAM NAME=movie VALUE="imagechanger.swf">')
document.write('<PARAM NAME=quality VALUE=high>')
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>')
document.write('<EMBED src="imagechanger.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="imagechanger" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">')
document.write('</EMBED>')
document.write('</OBJECT><br>')
document.write('</td></tr></table>')
document.write('<br><br>')
}



// SMALL PICTURE AREA
   if (showimage == "yes") {

document.write('<br><TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')
document.write('<a href="index.html"><IMG SRC="picts/sidebar.jpg" border="0" width="150"></a><br>')
document.write('</td></tr></table>')
document.write('<br><br>')
}




// START SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<span class="sidebartitle">')

document.write('Our Mission')

document.write('<br></span><span class="sidebartext">')

document.write('Helping businesses to have healthy people<br>')

document.write('</span><br>')

document.write('<span class="sidebartitle">')

document.write('Our Motto')

document.write('<br></span><span class="sidebartext">')

document.write('Healthy employees are better for business<br>')

document.write('</span><br><br>')
}
// END SIDEBAR AREA PARAGRAPH 2




// SEARCH FORM
   if (showsearch == "yes") {

document.write('<div id="search" style="'+searchLR+': '+searchX+'px; POSITION: absolute; TOP: '+searchY+'px; width: auto; z-index: 1;">')
document.write('<TABLE cellpadding="0" cellspacing="2" border="0" width="'+searchwidth+'"><tr><td colspan="2" class="sidebartext">')
document.write(''+searchtext+'<br>')
document.write('</td></tr><tr><td align="left">')
document.write('<form action="http://www.google.com/search" name="f" target="_blank" style="margin: 0px">')
document.write('<input type="hidden" name="any selected">')
document.write('<input size="15" name="q" value="" class="searchform">&nbsp;<input type=submit value="Go!" name="btnG" class="searchbutton"><br>')
document.write('</form>')
document.write('</td></tr></table>')
document.write('</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(", EST.")
document.write("</nobr><br></span>")
document.write('</div>');

}

   if (showtime == "yes") {
document.write('<div id="time-location" style="'+timeLR+': '+timeX+'px; POSITION: absolute; TOP: '+timeY+'px">');
var time = new Date()
var hours = time.getHours()
var minutes = time.getMinutes()
minutes=((minutes < 10) ? "0" : "") + minutes
var seconds = time.getSeconds()
seconds=((seconds < 10) ? "0" : "") + seconds
var clock = hours + ":" + minutes + ":" + seconds
document.write("<span class=\"date-font\"><nobr>" + clock)
document.write("</nobr><br></span>")
document.write('</div>');

}
*/

var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

function getthedate(){
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 1000)
		year+=1900

	var day=mydate.getDay()
	var month=mydate.getMonth()
	var daym=mydate.getDate()
	if (daym<10)
		daym="0"+daym

	var hours=mydate.getHours()
	var minutes=mydate.getMinutes()
	var seconds=mydate.getSeconds()
	var dn="AM"
	if (hours>=12)
		dn="PM"
	if (hours>12){
		hours=hours-12
	}
	if (hours==0)
		hours=12
	if (minutes<=9)
		minutes="0"+minutes
	if (seconds<=9)
		seconds="0"+seconds
	//change font size here
//	var cdate="<small><font color='000000' face='Arial'><b>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+" "+hours+":"+minutes+":"+seconds+" "+dn+"</b></font></small>"
	var cdate=""+dayarray[day]+",<br>"+montharray[month]+" "+daym+", "+year+"<br>"+hours+":"+minutes+":"+seconds+" "+dn+""
	if (document.all)
		document.all.clock.innerHTML=cdate
	else if (document.getElementById)
		document.getElementById("clock").innerHTML=cdate
	else
		document.write(cdate)
}

if (!document.all&&!document.getElementById)
	getthedate()

function goforit(){
	if (document.all||document.getElementById)
		setInterval("getthedate()",1000)
}

document.write('<span id="clock" class="date-font" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px"></span>');

// -- END -->

