I can't get optional template regions to work

I am trying to get one of two footers to display depending on the value of the  parameter, "home". . I've tried many things. It always the true footer no matter the vaue of home.
Also, I had to add the parameter "nothome" and add some empty optional regions to hide unresolved error messages I  can't seem to remove. Can you help? Here is the code for my  template.
========================================================================================== ===================
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" >
<head>
<!-- TemplateBeginEditable name="doctitle" -->
<title>Rick's Universe</title>
<!-- TemplateEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="../ricks.css" type="text/css" />
<!--BEGIN CLOCK/CALENDER CODE-->
<script type="text/javascript" language="JavaScript" src="../clock.js"></script>
<!-- END CLOCK/CALENDER CODE -->
<!--TemplateBeginEditable name="Header" -->
<style type="text/css">
img {
float: right;
padding-top: 20px;
padding-right: 20px;
padding-left: 20px;
</style>
<!-- TemplateEndEditable -->
<!-- TemplateParam name="home" type="boolean" value="false" -->
<!-- TemplateParam name="nothome" type="boolean" value="false" -->
</head>
<body onload="RealClock();">
<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->  
<div id="wrapper"> 
<div id="logo">
   <p class="a8">
    <a href="../HOME.HTM">Old Home Page</a>  
    <a href="../newmenu.htm">Rick's Dog Page</a></p>
   <p id="RealTime" class="jscClock"> </p>
   <!-- TemplateBeginEditable name="Title" -->
   <p class="title">The Page  Title</p>
   <!-- TemplateEndEditable --></div>
<div id="leftcolumn">
<ul>
<li><a href="MEETDOGS.HTM">Meet the dogs</a></li>
<li><a href="ART.HTM">Art</a></li>
<li><a href="PARKING.HTM">Automotive</a></li>
<li><a href="BABY.HTM">Babies</a></li>
<li><a href="BOUTIQUE.HTM">The Boutique</a></li>
<li><a href="CATLG.HTM">Catalogs</a></li>
<li><a href="CHARITY.HTM">Charities</a></li>
<li><a href="COMPUTE.HTM">Computing</a></li>
<li><a href="DAYCARE.HTM">Day Care</a></li>
<li><a href="DEPT.HTM">Department Stores</a></li>
<li><a href="DOGCOMP.HTM">Dogs In Competition</a></li>
<li><a href="DRUGS.HTM">Drug Stores</a></li>
<li><a href="EDUCATE.HTM">Education</a></li>
<li><a href="ELECT.HTM">Electronics</a></li>
<li><a href="EMPLOY.HTM">Employment</a></li>
<li><a href="ENTERT.HTM">Entertainment</a></li>
<li><a href="MONEY.HTM">Financial</a></li>
<li><a href="FITNESS.HTM">Fitness</a></li>
<li><a href="FLOWERS.HTM">Flowers</a></li>
<li><a href="FOOD.HTM">Food</a></li>
<li><a href="FUNGAME.HTM">Fun and Games</a></li>
<li><a href="GARDEN.HTM">Gardening</a></li>
<li><a href="GOVMENT.HTM">Government</a></li>
<li><a href="CARDS.HTM">Greeting Cards</a></li>
<li><a href="GROCERY.HTM">Groceries</a></li>
<li><a href="HEALTH.HTM">Health</a></li>
<li><a href="HOBBY.HTM">Hobbies</a></li>
<li><a href="HARDWARE.HTM">Home Improvement</a></li>
<li><a href="INFO.HTM">Information</a></li>
<li><a href="INTERNET.HTM">Internet and More</a></li>
<li><a href="JEWELRY.HTM">Jewelry</a></li>
<li><a href="BOOKS.HTM">Literature</a></li>
<li><a href="MAPDIR.HTM">Maps and Directions</a></li>
<li><a href="RECORDS.HTM">Music and Video</a></li>
<li><a href="MOVIES.HTM">Movies</a></li>
<li><a href="NEWS.HTM">News Stand</a></li>
<li><a href="OFFICE.HTM">Office Supplies</a></li>
<li><a href="PEOPLENET.HTM">People</a></li>
<li><a href="PETS.HTM">Pets</a></li>
<li><a href="PHONE.HTM">Phones</a></li>
<li><a href="PHOTO.HTM">Photography</a></li>
<li><a href="POST.HTM">Post Office</a></li>
<li><a href="PRICES.HTM">Price Comparison</a></li>
<li><a href="REALEST.HTM">Real Estate</a></li>
<li><a href="SECURITY.HTM">Security</a></li>
<li><a href="SEARCHNET.HTM">Searches</a></li>
<li><a href="SENIOR.HTM">Senior Page</a></li>
<li><a href="SHOES.HTM">Shoe Store</a></li>
<li><a href="SHOPPING.HTM">Shopping Clubs</a></li>
<li><a href="SPORTING.HTM">Sports</a></li>
<li><a href="TOYS.HTM">Toys and Games</a></li>
<li><a href="TV.HTM">Television</a></li>
<li><a href="TRAVEL.HTM">Travel</a></li>
</ul>
</div>
<div id="centercolumn">
  <div class="content">
  <!-- TemplateBeginEditable name="Content" -->
        This is the Content Section
  <!-- TemplateEndEditable -->
        </div>
<div id="footer">
  <!-- TemplateBeginIf cond="home=true" -->
  This website is the property of Fredric M. Zipser<br />
        Last Updated on
  <!-- TemplateBeginEditable name="EditRegion6" -->
  03/06/14
  <!-- TemplateEndEditable -->
        <!-- TemplateEndIf -->
        <!-- TemplateBeginIf cond="home=false" -->
  <a href="SiteMap.htm">Site map</a>  &brvbar; <a href="index.html"> Home</a >
  <!-- TemplateEndIf -->
</div>
<!-- TemplateBeginIf cond="nothome" --><!-- TemplateEndIf -->
</body>
</html>

I tried this but whether I set home to true or false up top  I get the home footer  and never the not home footer. 
Here is the current template : 
========================================================================================== ======== 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!BEGIN CLOCK/CALENDER CODE> 
img  
<!-- TemplateBeginEditable name="head" ><! TemplateEndEditable -->    
                                                                Old Home Page   
                                                                Rick's Dog Page
The Page Title
[Art | ART.HTM]
[Automotive | PARKING.HTM]
[Babies | BABY.HTM]
[The Boutique | BOUTIQUE.HTM]
[Catalogs | CATLG.HTM]
[Charities | CHARITY.HTM]
[Computing | COMPUTE.HTM]
[Day Care | DAYCARE.HTM]
[Department Stores | DEPT.HTM]
[Dogs In Competition | DOGCOMP.HTM]
[Drug Stores | DRUGS.HTM]
[Education | EDUCATE.HTM]
[Electronics | ELECT.HTM]
[Employment | EMPLOY.HTM]
[Entertainment | ENTERT.HTM]
[Financial | MONEY.HTM]
[Fitness | FITNESS.HTM]
[Flowers | FLOWERS.HTM]
[Food | FOOD.HTM]
[Fun and Games | FUNGAME.HTM]
[Gardening | GARDEN.HTM]
[Government | GOVMENT.HTM]
[Greeting Cards | CARDS.HTM]
[Groceries | GROCERY.HTM]
[Health | HEALTH.HTM]
[Hobbies | HOBBY.HTM]
[Home Improvement | HARDWARE.HTM]
[Information | INFO.HTM]
[Internet and More | INTERNET.HTM]
[Jewelry | JEWELRY.HTM]
[Literature | BOOKS.HTM]
[Maps and Directions | MAPDIR.HTM]
[Music and Video | RECORDS.HTM]
[Movies | MOVIES.HTM]
[News Stand | NEWS.HTM]
[Office Supplies | OFFICE.HTM]
[People | PEOPLENET.HTM]
[Pets | PETS.HTM]
[Phones | PHONE.HTM]
[Photography | PHOTO.HTM]
[Post Office | POST.HTM]
[Price Comparison | PRICES.HTM]
[Real Estate | REALEST.HTM]
[Security | SECURITY.HTM]
[Searches | SEARCHNET.HTM]
[Senior Page | SENIOR.HTM]
[Shoe Store | SHOES.HTM]
[Shopping Clubs | SHOPPING.HTM]
[Sports | SPORTING.HTM]
[Toys and Games | TOYS.HTM]
[Television | TV.HTM]
[Travel | TRAVEL.HTM]
This is the Content Section
This website is the property of Fredric M. Zipser
Last Updated on
03/06/14
                                Site map  ¦  Home
<!-- TemplateBeginIf cond="nothome" ><! TemplateEndIf --> 
</body> 
</html> 
========================================================================================== ===========

Similar Messages

  • How can i get option to approve or reject an emial in outlook in mac such that once i click on approve, the email is sent and if i click on reject it goes to sender (within our workgroup), i used to have it in windows

    how can i get option to approve or reject an emial in outlook in mac such that once i click on approve, the email is sent and if i click on reject it goes to sender (within our workgroup), i used to have it in windows

    Better ask on the Microsoft forums where the Office experts hang out as it's Microsofts product you're have questions about
    http://answers.microsoft.com/en-us/mac

  • How can I get the template( word rtf )  for PO – Printed Purchase Order ?

    I want to convert the “PO - Printed Purchase Order” report from Oracle rdf format to BI Publisher. I am looking for the template but could not find in UNIX.
    As per the Oracle blog, the template is available. Please see the URL : https://blogs.oracle.com/xmlpublisher/resource/121BIPReports.pdf
    The template code is POXPRPOL_XML.rtf
    when I look at the $PO_TOP/patch/115/publisher/templates/US directory, I cannot find POXPRPOL_XML.rtf
    How can I get the template( word rtf ) for PO – Printed Purchase Order ?
    Thank you,
    Biju Varghese.

    How can I get the template( word rtf ) for PO – Printed Purchase Order ? XML Publisher Administrator -> Templates
    find by code or name
    open it and you can downloadtemplate by "download" button

  • How can I get my web cam to work in Adobe Connect ?

    This is actually an end user's question that I am having trouble answering to...
    We use Adobe Connect to give online language classes, the end user is one of the students.
    I cannot find the right Support answer to give him.
    Problem:
    My camera does not work when I connect to Adobe's rooms but camera works fine with other software.
    Even though I suspected my old camera was working fine, yesterday I went ahead and bought a new camera. 
    I thought perhaps my webcam software may have been a problem, so I bought a different type camera with different software. 
    Even after removing all the old software, same result:  
    I surmised the problem might be caused by my firewall and security software, so once I tried changing the permissions for Adobe, and my Webcam, but that didn’t work.   
    Another time, I restarted my computer right before class and then turned off my firewall completely so there would be no interference but to no avail. I’m totally perplexed.  
    Isn’t there anyone else experiencing a similar problem?   Has anyone else found a solution? 
    I run Windows Vista with McAfee Internet Security Software.  I always reboot the computer before class and open no other programs other than Google Chrome. 
    I now have a brand new Microsoft LifeCam Cinema Camera with LifeCam 3.5 Webcam Software. 
    I test my camera before going online.  It always works fine.   Then I shut down the camera program and login into class.   
    When I “connect webcam” in the room, the light on my camera comes on (suggesting that it is ON), but only a black image is transmitted to the room.

    Check to see if you have Google Voice installed. If so, remove it and see
    if your problem vanishes. If not Google Voice, check to see if you have
    any other communications software which interacts with your cam and
    disable it. This was the problem I had with a similar problem on a Mac.
    MosesJOI <[email protected]>
    10/13/11 12:08 PM
    Please respond to
    [email protected]
    To
    jsb152 <[email protected]>
    cc
    Subject
    How can I get my web cam to work in Adobe Connect ?
    Re: How can I get my web cam to work in Adobe Connect ?
    created by MosesJOI in General Discussion - View the full discussion
    Thanks a lot Heyward for the swift reply !
    I sent the advice out to the end user, but unfortunately this wasn't the
    solution.
    His reply is below :-
    The default resolution of my new camera is already set at 640x360, but I
    went ahead and tried several lower resolutions (e.g. 424x240; 320x240; and
    160x120) but none worked in the room - camera still showed up as black
    blank screen.  Also, as far as I can tell, I don’t have the option of
    adjusting the frame rate.
    I started playing around with my Internet Security Settings to see if they
    might be playing a role. So far, all to no avail.
    Hmm...quite a tricky one - webcams always are - maybe if he can find a way
    to adjust the frame rate (?).
    He's going to fiddle about with the settings a bit more and see if
    something does the trick.
    If anyone has had a similar problem and found an ingenious solution,
    please jot on a note on this thread.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3969561#3969561]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969561#3969561]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in General Discussion by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • I need to use an hp 6215 printer with my mac book pro.  the driver installation disk doesn't work.  where can i get a driver that will work?  i use OS X

    i need to use an hp 6215 printer with my mac book pro.  the driver installation disk doesn't work.  where can i get a driver that will work?

    With the Lion it is essentially unnecessary to resort to external driver disks. What's more, most of those disks are incompatible with the OS and should not be used. The system already carries a wide variety of printer description files (aka PPDs, which is what modern printing systems use as "drivers") for a lot of brands. And there was an HP printer update just two days ago.
    Just checked in mine and did indeed find that the HP OfficeJet 6200 Series, with or without Fax, is covered with the latest update.
    So just go thru the motions of creating a proper printer instance:
    Make sure the Mac "sees" the printer on the network.
    System Preferences / Print & Scan
    Click on the + button on the left column
    Select the appropriate type of printer, will use IP for the rest of this
    Select HP Jetdirect - Socket, default for HP network printers
    Type the IP address or look it up
    Name the printer for easy identification on the print dialog
    Let the Mac identify the printer model or manually choose the driver
    Click Add.
    Once the instance pops up in the list, can click on Options & Supplies for further config.

  • I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    I have a MacBook, made in 2010. I can't get the eject function to work. I have a DVD in now and want to eject it and put another one in. Command-E, dragging it to the trash or Find-Eject does not work. Ideas?

    Hi there. Hear are some other options . Hold down for click on the track pad while restarting and keep it down all the way thru boot. Or use right click on a mouse. If it's stuck, sometimes sticking a business card in top edge of slot while trying the eject option can work.

  • My InDesign document has two page 1s and I can't get the page numbers to work.  Help!

    My InDesign document has two page 1s and I can't get the page numbers to work.  Help!  How do I fix this?

    Do you mean the first section is starting at page one?
    And the second one now is starting at page two?
    So I would ask why you would need sections at all?
    Did you set the controls for Automatic Page Numbering?
    If you select the particular page where section two is starting in the Pages Panel, you could untick the Start Section option in the numbering and section dialog. That would remove the section. You cannot do that with the very first section, but you should set the first section to Automatic Page Numbering if you ever want to use your document with an inDesign book file.
    Uwe

  • How can I get a netgear wgps606 to work?

    How can I get a netgear wgps606 to work.  Just bought a new mac mini running Lion

    If the printer connects to the USB port of this print server then for many brands of printer you cannot use the vendor provided driver. Instead you need to look at an alternate driver that supports this type of network connection. Gutenprint is one option and it is preferred because it is free. In previous versions of OS X it was included with the OS but with Lion it is not included so you will have to download it from here.
    If the above does not help then please reply with the brand and model of printer you want to connect to the print server. And it would also help if you could provide a bit more detail as to what your issue is.

  • I can't get Norton Safe web to work. (I've just upgraded to Norton 360 from NIS 2011 on which Safe web worked OK).

    I can't get Norton Safe Web to work inFirefox since I upgraded to Norton 360. I was previously running NIS 2011 and it worked fine then.

    Actually when you have created an ad hoc network using Internet Sharing your Mac is supposed to have a self-assigned IP.
    What I suggest that you do is turn everything off on the Mac and tell the iPad to forget the Internet Sharing network, then restart the Mac and the iPad. Next slowly restart Internet Sharing on the Mac and when that is set up corectly try to connect to the network from scratch with the iPad. If you password protect your Internet Sharing network I suggest that you use the Other... option on the iPad; enter the network's name, select the correct protection scheme and finally enter the password and Join.
    This issue should have nothing to do with your modem or router, this is all Mac and iPad.

  • I have tried to reindex my messages but I still can not get the search function to work in email

    I have tried reindecing my messages by rebuilding the library but I still can't get my message function to work in mail.  Any proposed solutions much appreciated.

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock all your user files, reset their ownership, and remove their access-control lists. If you've set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Back up all data.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • I can't get the finger service to work in Messaging Server 3.01.

    I can't get the finger service to work in Messaging Server 3.01.
    <P>
    This is a known problem in 3.01. There is a patch which
    fixes this problem. It is available at:
    <P>
    ftp://[email protected]/messaging/m301ptch.exe
    <P>
    the password is: bet@NOW!

    Hi David
    Say you have term <foo> and definition <bar> pair. Here term (any text you want highlight) is used in document at many places and definition is defined once as complete paragraph anywhere (i.e. in table cell). if same term is define at multiple places first definition is taken.
    Use marker text same as your term text <foo> for tagging both term and definition.
    Use Glossary marker to tag definition
    Use GlossaryTerm marker to tag term
    We have taken feedback to update the FrameMaker help on this.
    For in place highlighting you may also try expanded text  http://help.adobe.com/en_US/FrameMaker/9.0/Using/WS9FDAD957-2A30-4251-B520-EC32E0A8097B.ht mlhttp://help.adobe.com/en_US/FrameMaker/9.0/Using/WS9FDAD957-2A30-4251-B520-EC32E0A8097B.ht ml   Now in FM 12 expanded text  is inside Special > Publish Options > …
    Hope it clarifies your doubts
    Thanks
    Amit 

  • CAN'T GET "REDPLUM COUPON PRINTER" TO WORK AFTER UPDATING TO JAVA 7 UPDATE 51

    RECENTLY UPDATED TO JAVA 7 UPDATE 51, CAN'T GET "REDPLUM COUPON PRINTER" TO WORK. VALASSIS COMMUNICATIONS, INC. IF YOU CLICK RUN ON THE PROGRAM, DOESN'T DO ANYTHING. WORKED FINE BEFORE UPDATE. DOESN'T WORK WITH INTERNET EXPLORER EITHER. I USE NORTON ANTIVIRUS. DOWNLOADED JAVA MORE THAN ONCE, SAME PROBLEM. EVEN DOWNLOADED WITH ANTIVIRUS OFF, SAME RESULTS. PLEASE HELP.

    The CAPS LOCK key also seems to have gotten stuck on.*
    Update 51 ratcheted up the security on Java applets, so that unsigned applets that used to generate a warning are now completely blocked. Please see the following documentation from Oracle on your options:
    * [http://www.java.com/en/download/help/appsecuritydialogs.xml What should I do when I see a security prompt from Java?]
    * [http://www.java.com/en/download/faq/exception_sitelist.xml How can I configure the Exception Site List?]
    ''* Just a joke-y way of noting that on the web, writing in all caps is considered shouting. Please don't shout at the volunteers.''

  • AirPort Time Capsule. Read everything and tried everything. Can't get a guest network to work. Switched from bridge mode and still doesn't work. Anyone able to set up a guest network?

    AirPort Time Capsule. Read everything and tried everything. Can't get a guest network to work. Switched from bridge mode and still doesn't work. Anyone able to set up a guest network?

    I had a bright house cable modem that also had built-in wi-fi.
    Don't mean to be picky here, but if the "modem" had built in Wi-Fi, it was not a modem. It was a modem/router, also known as a gateway type of device.
    A device like this combines the functions of a separate modem and separate router in one package. Turning off the wireless on a device like this does not make a it modem.....it is still a modem/router or gateway with the WiFi turned off.
    I think that if I have them replace the current "complicated" modem with a "simple" one I should be able to get the guest network up and running.
    That would be correct. Hopefully, they offer this type of option for their customers.

  • Want to take back because i can not get my ipod touch to work on this

    I can not get my ipod touch to work on this Linksys WRT54g router at all.I called them and was on the phone for a hour and still can not get it to work.And it is not the ipod because if i go outside i can get on with someone router outside.Can someone Please Please Help Me with this i would like to be able to use my rounter.
    Regards
        Chippy

    Chippy:
    I'll assume you've read the iPod manual. The directions I have seem fairly straightforward - iPod connects to a wireless network when it discovers one. Or, if that option is turned off, you have to manually connect it.
    When it comes to attaching to your router, you will need to know what kind of security the router is using, what the security password is and most important - the router's DHCP function must be activated so the iPod can acquire an IP address.
    If the iPod truly can handle the connection, and you have the necessary information I mentioned, it should connect without a problem. But since you can't connect, you need to review the settings I mentioned.
    It's possible there is some sort of issue with the router and the iPod. But it's my guess that the iPod is not acquiring an IP address because the router is not giving them out.
    Check these things out and post what you find. If we can figure out the answer, your post will be helpful to others who may run into the same problem.

  • How can I get my extra speakers to work?

    Just got a new Windows 8 but can't get my extra speakers to work after I plugged them in? With the Wiondows 7 a pop up came up to guide? This doesn't give any options?

    my cam does not work

Maybe you are looking for