menuinc10.php to HTML

index

USE AT OWN RISK

Generated: Tue Jul 31 15:22:08 2007 from menuinc10.php 2005/12/10 9.9 KB bytes.

<?php

function printJavaStuff10(){
// prints menu in header

echo "
<script type=\"text/javascript\">

//Contents for menu 1
var menu1=new Array()
menu1[1]='<a href=\"imgs10.php?type=b\" style=\"color: #0066cc;\">Saturday (b)</a>'
menu1[2]='<a href=\"imgs10.php?type=c\" style=\"color: #0066cc;\">Sunday (c)</a>'
menu1[3]='<a href=\"imgs10.php?type=d\" style=\"color: #0066cc;\">Other (d)</a>'
menu1[4]='<a href=\"flowers/flowerinfo.php\" style=\"color: #0066cc;\">Weekly Specials</a>'
menu1[5]='<a href=\"imgs10.php\" style=\"color: #0066cc;\">Recent</a>'

//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href=\"imgs10.php?case=family&type=*&wrap=5&max=50&page=19\" style=\"color: #0066cc;\">Aug 2005</a>'
menu2[1]='<a href=\"imgs10.php?case=family&type=*&wrap=5&max=50&page=8\" style=\"color: #0066cc;\">Sept 2005</a>'
menu2[2]='<a href=\"imgs10.php?case=family&type=*&wrap=5&max=50&page=3\" style=\"color: #0066cc;\">Oct 2005</a>'
menu2[3]='<a href=\"imgs10.php?case=family&type=*&wrap=5&max=50&page=0\" style=\"color: #0066cc;\">Nov 2005</a>'
menu2[4]='<a href=\"imgs10.php?case=family&type=*&wrap=5&max=-1&page=0\" style=\"color: #0066cc;\">All</a>'

var menu3=new Array()
menu3[0]='<a href=\"philosophy.php\" style=\"color: #0066cc;\">Company Philosophy</a>'
menu3[1]='<a href=\"construction.php\" style=\"color: #0066cc;\">Franchising</a>'

var menu4=new Array()
menu4[0]='<a href=\"./flowers/flowerinfo.php\"   style=\"color: #0066cc;\">Flower Info</a>'
menu4[1]='<a href=\"construction.php\"   style=\"color: #0066cc;\">The Meaning of Flowers</a>'
menu4[2]='<a href=\"construction.php\" style=\"color: #0066cc;\">Caring for Flowers</a>'

var menuwidth='300px' //default menu width
var menubgcolor='white' //menu bgcolor
var disappeardelay=250 //menu disappear speed onMouseout (in ms)
var hidemenu_onclick=\"yes\" //hide menu when user clicks within menu?

/////No further editing needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id=\"dropmenudiv\" style=\"visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'\" onMouseover=\"clearhidemenu()\" onMouseout=\"dynamichide(event)\"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype==\"left\")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype==\"left\")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=\"\"){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type==\"click\" && obj.visibility==hidden || e.type==\"mouseover\")
obj.visibility=visible
else if (e.type==\"click\")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!=\"BackCompat\")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge==\"rightedge\"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join(\"\")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById(\"dropmenudiv\") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, \"visible\", \"hidden\", menuwidth)
dropmenuobj.x=getposOffset(obj, \"left\")
dropmenuobj.y=getposOffset(obj, \"top\")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, \"rightedge\")+\"px\"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, \"bottomedge\")+obj.offsetHeight+\"px\"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!=\"undefined\"){
if (ie4||ns6)
dropmenuobj.style.visibility=\"hidden\"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout(\"hidemenu()\",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!=\"undefined\")
clearTimeout(delayhide)
}

if (hidemenu_onclick==\"yes\")
document.onclick=hidemenu

</script>
";
return;
}

function printMenu10(){
echo "
<!-- --------------------- START NAV ---------------- !--><table width=\"100%\" border=\"0\"><tr><td><!-- --------------------- START NAV ---------------- !-->

<center>
   <table cellpadding=\"5\" cellspacing=\"0\" style=\"background-color: transparent\" height=\"45\" border=1 bordercolor=\"#0066CC\">
   <tr valign=\"middle\">
   <td width=\"59\" border=0>
   <a href=\"index.php\"><img src=\"menu_lotus.jpg\" border=0 alt=\"Home to the Kingdom\"></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a href=\"imgs10.php\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu1, '100px')\" onMouseout=\"delayhidemenu()\"><font class=\"navlink\">Live Flowercam</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a href=\"default.htm\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu2, '100px')\" onMouseout=\"delayhidemenu()\"><font class=\"navlink\">Family & Friends Photos</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a HREF=\"market.php\" class=\"navlink\"><font class=\"navlink\">Market Locations</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a href=\"default.htm\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu3, '100px')\" onMouseout=\"delayhidemenu()\"><font class=\"navlink\">Philosophy</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a href=\"default.htm\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu4, '100px')\" onMouseout=\"delayhidemenu()\"><font class=\"navlink\">Flower Info</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a HREF=\"forum-chron.php\" class=\"navlink\"><font class=\"navlink\">Forum</font></a>
   </td>
   <td align=\"center\" style=\"background-color: #ffffff;\">
   <a HREF=\"links.php\" class=\"navlink\"><font class=\"navlink\">Friendly Links</font></a>
   </td>
   <td width=\"59\" border=0>
   <a href=\"index.php\"><img src=\"menu_lotus.jpg\" border=0 alt=\"Home to the Kingdom\"></a>
   </td>
   </tr>
</table>
   </center>
   
<!-- --------------------- END NAV ---------------- !--></td></tr><tr><td><!-- --------------------- END NAV ---------------- !-->
";
return;
}

function printFooterMenu10(){
echo "
   <p align=\"center\" class=\"bottomnav\">
   [ <a href=\"index.php\" style=\"color:#FFFFFF;\">Home</a>
   | <a href=\"imgs10.php\" style=\"color:#FFFFFF;\">Flowercam</a>
   | <a href=\"imgs10.php?case=family\" style=\"color:#FFFFFF;\">Family Photos</a> 
   | <a href=\"market.php\" style=\"color:#FFFFFF;\">Market Locations</a> 
   | <a href=\"philosophy.php\" style=\"color:#FFFFFF;\">Philosophy</a> 
   | <a href=\"flowerinfo.php\" style=\"color:#FFFFFF;\">Flowers</a>
   | <a href=\"forum-chron.php\" style=\"color:#FFFFFF;\">Forum</a> 
   | <a href=\"links.php\" style=\"color:#FFFFFF;\">Links</a>
   | <a href=\"about.php\" style=\"color:#FFFFFF;\">About</a>   ]<br>
";
return;
}

function setupCounter() {
   // find the poll file
   $dir = dirname(__FILE__);
   $countFile = $dir . '/count.txt';
   $count = 0;   
   // read countFile & create val
   if(file_exists($countFile)){
   $tempFile = fopen($countFile, 'r');
   while(!feof($tempFile)) {
   $line = fgets($tempFile, 50);
   }
   fclose($tempFile);
   $count = intVal($line);
   }
   else{ echo "relevant poll file not found"; }
   
   // iterate count & write to countFile
   $count++;
   $newEntry = $count;
   
   if (file_exists($countFile)) {
   if ($tempFile = fopen($countFile, 'w+')) {
   fwrite($tempFile, $newEntry, 1000);
   fclose($tempFile);
   }
   } else { echo "<p>Could not save iterated webcount - counter file not found.</p>";   }
}

function getCount() {
   // find the poll file
   $dir = dirname(__FILE__);
   $countFile = $dir . '/count.txt';
   
   // read countFile & create val
   if(file_exists($countFile)){
   $tempFile = fopen($countFile, 'r');
   while(!feof($tempFile)) {
   $line = fgets($tempFile, 50);
   }
   fclose($tempFile);
   
   $count = intVal($line);
   }
   else{ echo "relevant poll file not found"; }
   echo $count;
   
   if( ( (intval($count) -1 ) %10 ) == 0) { echo 'st';}
   elseif( ( (intval($count) -2 ) %10 ) == 0)   { echo 'nd';}
   elseif( ( (intval($count) -3 ) %10 ) == 0)   { echo 'rd';}
   else   { echo 'th';}
   
   return;
}

// file: menuinc10.php - version: 2005.12.08 - grm

?>

index

Valid HTML 4.01 Transitional