Bash shell script to exception when database has been shutdown

Hi, I'm quite new in shell scripting. I created the below simple script to do a check on the database, it's a count so it works fine... if the database is there. Now I want to be able to catch if the database is or is not there, what I tried so far didn't work, can anybody please give me a hand with this?
The shell script file "start_check.sh":
#!/bin/bash
# Set environmental variables
. /home/oracle/env/usrdwh1.env
TEMP_FILE=rwcnt
runCheckQuery()
# Run query and dump result into the TEMP_FILE
sqlplus -s "/as sysdba" > /tmp/${TEMP_FILE} << EOF
@/u02/reports/sql/start_check.sql
EOF
if [ $? -eq 0 ]
then err_num=0
else err_num=1
fi
################ MAIN ####################
runCheckQuery
row_count=`cat /tmp/${TEMP_FILE}`
if [ $err_num -eq 0 ]
then
# If no rows were found then send an email alert
if [ $row_count -eq 0 ]; then
echo 'No process found - Please investigate' | mailx -s "Daily check ALERT" [email protected]
fi
else
# There was an error when trying to connect to the db. Need to report it
echo 'Database connection error - Please investigate - Error Message: (' $row_count ')' | mailx -s "Daily check ALERT (Database connection error)" [email protected]
fi
# Remove the tmp file
rm /tmp/${TEMP_FILE}
The sql script file "start_check.sql":
SET SERVEROUTPUT ON
SET FEEDBACK OFF
WHENEVER SQLERROR EXIT;
DECLARE
row_count NUMBER;
BEGIN
SELECT COUNT(*)
INTO row_count
FROM dw_ml_ba ml_ba
WHERE sys_id = 'CCX'
AND ml_ex_start_datetime > TRUNC(sysdate);
DBMS_OUTPUT.PUT_LINE(row_count);
END;
EXIT
Edited by: leocoppens on Jan 4, 2013 4:05 PM

There may be a better, but here is a shell script that works:
#!/bin/ksh
# db_check.sh
# Script used to check if one or all of the databases on
# one server are available.
# Parameter Description
sid=$1    # Database SID or Keyword 'all'
function check1db
sid=$1    # Database SID
ORAENV_ASK=NO
. /usr/local/bin/oraenv "$sid"
ORAENV_ASK=YES
if [ $(ps -ef|grep "ora_smon_$sid"|grep -v grep|wc -l) -eq 0 ]
then
  echo "%-Error, Database $sid is NOT available - Not started\n" >>${CHKLOG}
  return 1
fi
dbok=$(\
sqlplus -s / <<!
if [[ $(echo $dbok|cut -d' ' -f1 ) == 'ERROR:' ]]
then
  echo "%-Error, Database $sid is NOT available - Started with errors\n" >>${CHKLOG}
  return 1
else 
  echo "%-Info, Database $sid is available\n" >>${CHKLOG}
fi
return 0
} # end function check1db
# Set some environment variables:
ORACFG=/etc               # Location of oratab
ORALOG=$HOME/logs         # Location for result log
EMAIL='[email protected]'  # E-mail to send alert
sid=${sid:-'all'}
echo "$0 Job started at: `date` "
BDATE=$(date +%y%m%d)
export CHKLOG=$ORALOG/db_check_${sid}_${BDATE}.log
echo "$0 on `date`" >$CHKLOG
if [ "$sid" = "all" ]
then
  i=0
  stat=0
  cat $ORACFG/oratab | while read LINE
  do
    case $LINE in
     \#*)            ;;      #comment-line in oratab
        sid=`echo $LINE | awk -F: '{print $1}'`
        check1db "$sid"
        stat1=$?
        ((stat += $stat1)) # Combine the Status of All Calls
        ((i = $i + 1))     # Count Number of Databases Checked
    esac
  done
  ((j = $i - $stat))  # Count Number of Databases Available
  echo "\n%-Info, `date +%c`,\n\tTotal databases checked = $i,\n\tAvailable = $j, Not available = $stat\n" >>${CHKLOG}
else
  check1db $sid
  stat=$?
fi
# Beep operator if database down.
if [ ${stat} -ne 0 ]
then
  SUBJ="Database(s) alert."
  mailx -s"$SUBJ" $EMAIL <$CHKLOG
fi
echo "$0 Job stoped at: `date` "
exit $stat:p

Similar Messages

  • Invoking a bash shell script from Java code

    Hi All
    I am trying to invoke a Bash shell script using java code. The arguments required are "source wmGenPatch <source dir> <destination dir> no_reverse.
    in the code I have specified the arguments considering the cannonical paths of the files as the code may run on Unix or windows platform.
    I am getting a error while invoking Runtime.getRuntime().exec(args). The error is as follows :
    "The Error Occurred is: CreateProcess: source D:\Package4.0\workspace\DiffEngineScripts\v4a02\wmGenPatch D:\Package4.0\workspace\fromImageFilesDir\ D:\Package4.0\workspace\toImageFilesDir\ no_reverse error=2"
    It seems that error=2 indicates that the 'file not found' exception. But i can see the directories referred to in the error at place in the workspace.
    Kindly advice.
    Thanks in advance.

    Hi All
    I am pretty new to invoking bash shell scripts from java and not sure if i am progressing in right direction.
    The piece of code tried by me is as follows
    try {
                   currentDir = f.getCanonicalPath();
              } catch (IOException e) {
              if (currentDir.contains("/")) {
                   separator = "/";
              } else {
                   separator = "\\";
              String args[] = new String[7];
              args[0] = "/bin/sh";
              args[1] = "-c";
              args[2] = "source";
              args[3] = currentDir + separator + "DiffEngineScripts" + separator
                        + "v4a02" + separator + "wmGenPatch";
              args[4] = sourceFileAdd;
              args[5] = destFileAdd;
              if (isReverseDeltaRequired) {
                   args[6] = "reverse";
              } else {
                   args[6] = "no_reverse";
              try {
                   Process xyz = Runtime.getRuntime().exec(args);                              
                   InputStream result = xyz.getInputStream();
                   InputStreamReader isr = new InputStreamReader(result);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   while ( (line = br.readLine()) != null)
                        System.out.println(line);
                   int exitVal = xyz.waitFor();
                   System.out.println("Leaving Testrun.java");
              } catch (Throwable t) {
                   t.printStackTrace();               
    and on running the same i am getting Java.io.IOException with the stack trace
    java.io.IOException: CreateProcess: \bin\sh -c source D:\Package4.0\workspace\DiffEngineScripts\v4a02\wmGenPatch D:\Package4.0\workspace\fromImageFilesDir\ D:\Package4.0\workspace\toImageFilesDir\ no_reverse error=3
    kindly advice
    Thanks in advance

  • Problem with running Bash shell scripts

    I am unable to run Bash shell scripts on the UNIX Terminal application.
    This is the transcript from the Terminal application.
    Zhi-Yang-Ongs-Computer:/Applications/MetaPost/metapost-1.102 zhiyangong$ ./test1.sh
    dyld: Symbol not found: _BC
    Referenced from: /usr/local/bin/bash
    Expected in: /usr/lib/libSystem.B.dylib
    Trace/BPT trap
    Zhi-Yang-Ongs-Computer:/Applications/MetaPost/metapost-1.102 zhiyangong$
    Is this a problem with the the default installation of the Bash shell? Can I install the Bash shell on my own? If so, how can I do that?
    Also, how can I get the dynamic linker, dyld, to refer to the symbol "_BC"? What does this symbol "_BC" refer to?

    This was in your posted output:
    /usr/local/bin/bash
    You are NOT running the default bash, you are trying to run a private copy.
    The default Mac OS X bash is located at
    /bin/bash
    Try the following:
    /bin/bash ./test1.sh
    Does that work?
    What is the first line of your script? Is it:
    #!/bin/bash
    Or maybe
    #!/usr/bin/env bash
    /usr/bin/env would find the first bash in PATH . I find this most useful for finding perl on different systems, but sh, ksh, bash, zsh, csh, tcsh are all generally found in /bin so I do not bother using /usr/bin/env
    And if you have
    #!/usr/local/bin/bash
    Then the person that wrote test1.sh choose to use something besides the default bash
    Or maybe this script was transferred from some system where you needed to put your own copy of bash in /usr/local/bin because the vendor does not distribute bash
    Then again, you have not showed us what is inside your script, so it is possible something in the script called something else which invoked the /usr/local/bin/bash
    If that is the case, then you might try:
    /bin/bash -x ./test1.sh
    which should show you the commands executed before it died.

  • How to reinstall CRS after database has been creaed.

    Hi gurus
    I need to reinstall the CRS because I used wrong IP alias when privious installation.The database has been created and put into the test enviroment. I am required to reinstall the CRS without affecting the database normal running.
    How to achive this. A step by step procedure is preferable or just a link is OK.
    Thanks for your time?

    Do you need to change a hostname or an IP address ?
    What hostname or IP address do you need to change ?
    VIP ? Public address ? Interconnect ?
    Following discussion may help:
    Re: Need to change IP address and host name on a ORACLE 10g RAC setup.
    Edited by: P. Forstmann on 2 avr. 2010 09:11
    Edited by: P. Forstmann on 2 avr. 2010 09:17

  • VTO-4400 No database has been discovered. please use the enterprise managem

    Hi,
    I am new to Oracle Enterprise Manager. I just installed Oracle8i on Windows 2000 Server. I am connecting to OEM as sysman. When i try to open database applications (e.g. Tools - Database Applications - DBA Studio) from Oracle Enterprise Manager, it gives error:
    VTO-4400 No database has been discovered. please use the enterprise management console to discover atleast one database before starting the application.
    Can anybody tell me how to connect to the database?
    Thanks,
    Prutha

    Having said all that, a colleague has suggested we just limit the amount of RAM available for the EX2010 DB cache
    Then it won't have to start releasing RAM when the backup runs, and won't throw SCOM alerts
    This attribute should do it...
    msExchESEParamCacheSizeMax
    http://technet.microsoft.com/en-us/library/ee832793.aspx
    Give me a shout if this is a bad idea
    Thanks

  • E-mailing users when data has been loaded.

    Does anyone have some information on setting up FDM to e-mail certain users when data has been loaded for certain locations? Not sure what steps need to be taken to setup the FDM server, FDM and just wondering if there are any generic scripts that can be used.

    You would need to write a custom script to do this. You can use the E-mail Accelerator to do this, and it would need to be included in an event that fires after load.

  • A script in file EditingUtils.js has been running for a long time

    Hello Everyone.   I just downloaded Dreamweaver CS 5.5 Trial version (Win 7), and I have been working on my home page.  I've created a wonderful image map with spry widget tooltips (about 60 tooltips), and I'm really happy with the results....until this error started to pop-up.  I have re-started the computer, deleted winfilecache****, and updated Dreamweaver through the help window.   I have googled this error, and found it existed in CS3 and CS4, and even in CS5, but no information as to why it's happening in CS 5.5.    I really want to buy this software, but am unsure as to why I would spend this amount of money on something that's going to give me a headache.  I am a layman, and work on my site recreationally.  I'm new to CSS and Spry so if i missed the obvious I apologize for that.   I inserted the spry widgets in the CODE screen by highlighting my hotspot CODE and clicking INSERT>SPRY>SPRYTOOLTIP.  Each tooltip is checked to "follow on mouse" and "hide on mouse out" and horizontally moved -400.
    So now every time I open this page in Dreamweaver this error "A script in file EditingUtils.js has been running for a long time.  Do you wish to continue?" pops up, and whenever i try to edit the spry tooltip properties.  Apologies if this has been answered elsewhere.  thanks for your help and time.  Part of the code looks like this: //
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
          var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    Hope I included most everything needed to diagnose, let me know what I forgot.  Thanks again.

    oops i tried to copy the code here but it didn't work. Is this better?
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>TestRun</title>
    <style type="text/css">
    body {
    background-image: url(images/bg.jpg);
    background-repeat: repeat-x;
    background-color: #000025;
    .img_class {
    height: 514px;
    width: 499px;
    </style>
    <link href="CSS/layout.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    </head> <body>
    <div id="wrapper">
    <div id="logo"><a href="TestRun.html"><img src="images/Argo_Ship_logo.gif" width="797" height="248" alt="Bible Voyages" longdesc="http://www.biblevoyages.com" /></a></div>
    <div id="navigation">HOME | ABOUT US | BIBLE STUDIES | FORUM | LIBRARY | RESEARCH LINKS </div>
    <Div id="headerImg"></Div>
    <div id="bodyArea">
    <div id="left">
    <div>
    <div class="img_class"><img src="images/Zodiac Pie Animate.gif" alt="Zodiac" width="499" height="514" border="0" usemap="#Map" />
    <map name="Map" id="Map">
    <area shape="poly" coords="114,255,151,233,156,189,192,165,154,145,108,174,103,214,101,244" href="#" alt="Virgo" id="sprytrigger1" />
    <area shape="poly" coords="159,204,195,211,194,258,163,264,158,248" href="#" alt="Coma" id="sprytrigger2" />
    <area shape="poly" coords="71,39,7,84,7,172,103,149,143,95,95,95,81,39,62,39,60,86,47,121,17,95,9,79,10,71,9 ,86" href="#" id="sprytrigger3" />
    <area shape="poly" coords="160,198,196,172,228,200,231,229,208,235,199,205" href="#" id="sprytrigger4" />
    <area shape="poly" coords="160,103,195,85,229,105,220,141,191,156,153,134,151,120" href="#" id="sprytrigger5" />
    <area shape="poly" coords="52,89,36,102,25,78,36,69" href="#" id="sprytrigger6" />
    <area shape="poly" coords="116,84,157,99,198,84,140,47,107,51,103,84,156,99" href="#" id="sprytrigger7" />
    <area shape="poly" coords="244,180,242,198,227,196,222,181,238,176" href="#" id="sprytrigger8" />
    <area shape="circle" coords="46,183,14" href="#" id="sprytrigger9" />
    <area shape="circle" coords="97,65,11" href="#" id="sprytrigger10" />
    <area shape="circle" coords="261,51,11" href="#" alt="Number 3" id="sprytrigger11" />
    <area shape="poly" coords="236,119,285,94,288,61,308,56,322,64,319,80,338,81,336,53,313,35,279,41,264,66,247 ,60,244,38,200,73" href="#" id="sprytrigger12" />
    <area shape="poly" coords="271,151,281,159,281,172,298,170,308,149,323,149,307,131,288,125,268,125,247,136" href="#" id="sprytrigger13" />
    <area shape="poly" coords="223,178,237,173,239,138,266,126,287,123,317,134,328,158,337,170,348,163,321,120,2 99,110,269,108,249,119,228,132,208,157" href="#" id="sprytrigger14" />
    <area shape="poly" coords="258,224,289,223,305,197,325,190,315,162,290,176,273,168,276,160,249,144,244,169,2 48,201,236,204,241,223" href="#" id="sprytrigger15" />
    <area shape="circle" coords="398,86,13" href="#" alt="chapter4" id="sprytrigger16" />
    <area shape="poly" coords="389,103,381,76,345,90,343,130,397,179,425,173,470,118,450,85,427,67,413,102" href="#" id="sprytrigger17" />
    <area shape="poly" coords="305,234,324,228,328,203,308,200,297,214" href="#" id="sprytrigger18" />
    <area shape="rect" coords="338,5,380,57" href="#" alt="Lyra" id="sprytrigger19" />
    <area shape="poly" coords="279,280,299,254" href="#" />
    <area shape="poly" coords="245,252,269,276,288,281,298,255,295,227,256,227,224,250,214,267,220,306,231,271,2 34,256" href="#" id="sprytrigger20" />
    <area shape="circle" coords="477,195,13" href="#" alt="Chapter 5" id="sprytrigger21" />
    <area shape="poly" coords="396,181,461,167,465,214,465,254,438,249,438,231,424,224" href="#" alt="Capricornus" id="sprytrigger22" />
    <area shape="poly" coords="378,246,400,227,377,188,352,155,347,172,325,179,328,197,355,237" href="#" id="sprytrigger23" />
    <area shape="circle" coords="479,296,15" href="#" id="sprytrigger24" />
    <area shape="poly" coords="467,239,494,243,486,256,492,283,479,279,467,286,465,270" href="#" id="sprytrigger25" />
    <area shape="poly" coords="438,250,436,234,425,227,414,218,412,226,422,247,403,252,406,268,419,281,433,345,4 50,371,477,365,494,318,475,317,462,297,463,259" href="#" id="sprytrigger26" />
    <area shape="poly" coords="421,298,414,279,400,254,390,263,384,292,372,254,365,256,371,280,346,280,367,337,3 79,364" href="#" id="sprytrigger27" />
    <area shape="poly" coords="332,209,351,234,366,253,369,275,346,265,331,278,311,261,298,268,302,243,321,234" href="#" id="sprytrigger28" />
    <area shape="circle" coords="475,402,16" href="#" id="sprytrigger29" />
    <area shape="poly" coords="351,429,391,394,400,375,425,334,422,309,400,337,370,383,352,361,338,362,336,381,3 53,398,359,410" href="#" id="sprytrigger30" />
    <area shape="poly" coords="341,360,365,368,371,352,345,324,312,345,305,347,305,381,331,379" href="#" id="sprytrigger31" />
    <area shape="poly" coords="290,314,322,320,324,273,303,269,291,282,267,279,266,296,271,310" href="#" id="sprytrigger32" />
    <area shape="circle" coords="394,492,16" href="#" id="sprytrigger33" />
    <area shape="poly" coords="333,386,354,405,347,423,323,425,304,430,295,425,300,406" href="#" id="sprytrigger34" />
    <area shape="poly" coords="286,338,324,337,324,326,282,316" href="#" id="sprytrigger35" />
    <area shape="poly" coords="365,427,411,374,440,366,465,385,457,403,465,418,442,444,339,501,325,471,304,450,3 14,431" href="#" id="sprytrigger36" />
    <area shape="poly" coords="315,340,282,341,258,357,258,382,271,399,287,397,303,354" href="#" id="sprytrigger37" />
    <area shape="circle" coords="257,499,15" href="#" id="sprytrigger38" />
    <area shape="poly" coords="310,437,298,450,301,460,271,458,264,443,226,415,235,401,256,406,269,401,292,401,2 93,394,310,398,293,411,295,429" href="#" id="sprytrigger39" />
    <area shape="poly" coords="231,411,223,407,197,420,195,440,195,467,205,477,233,472,257,455" href="#" id="sprytrigger40" />
    <area shape="poly" coords="259,455,278,464,315,472,342,506,289,508,265,478,237,490,225,480" href="#" id="sprytrigger41" />
    <area shape="poly" coords="229,406,238,399,255,401,254,357,225,355,213,384" href="#" id="sprytrigger42" />
    <area shape="circle" coords="130,498,20" href="#" id="sprytrigger43" />
    <area shape="poly" coords="194,420,219,407,211,384,217,371,190,357,165,376,169,400,183,415" href="#" id="sprytrigger44" />
    <area shape="poly" coords="206,479,222,479,228,508,183,510,176,469" href="#" id="sprytrigger45" />
    <area shape="poly" coords="111,509,109,488,120,479,135,477,155,488,164,470,147,436,79,468,73,489" href="#" id="sprytrigger46" />
    <area shape="poly" coords="164,392,173,427,136,415,138,388" href="#" id="sprytrigger47" />
    <area shape="circle" coords="46,399,19" href="#" id="sprytrigger48" />
    <area shape="poly" coords="145,387,179,356,166,329,131,342,118,351,135,385" href="#" id="sprytrigger49" />
    <area shape="poly" coords="265,280,245,259,235,267,239,305,265,306" href="#" id="sprytrigger50" />
    <area shape="poly" coords="211,274,223,246,201,237,195,266,153,274,180,335,226,334" href="#" id="sprytrigger51" />
    <area shape="poly" coords="52,420,67,407,63,386,48,377,85,357,107,373,127,426,69,474,18,448,6,384,32,416" href="#" id="sprytrigger52" />
    <area shape="circle" coords="18,299,21" href="#" id="sprytrigger53" />
    <area shape="poly" coords="114,346,161,329,148,250,132,248,117,259,93,252,90,265,105,338" href="#" id="sprytrigger54" />
    <area shape="poly" coords="119,395,134,387,111,350,88,329,68,287,46,280,39,255,46,237,55,214,77,184,146,120, 146,107,112,138,83,159,65,184,45,208,28,233,38,285,76,354,96,355" href="#" id="sprytrigger55" />
    <area shape="poly" coords="49,278,65,284,90,270,65,235,43,255" href="#" id="sprytrigger56" />
    <area shape="poly" coords="89,180,68,203,60,213,65,232,96,225,103,201,101,188" href="#" id="sprytrigger57" />
    </map>
    </div>
    </div>
    </div>
    <div id="right">
    <p>Ps 19:1-6<br />
    1 The heavens declare the glory of God; and the firmament sheweth his handywork.</p>
    <p> 2 Day unto day uttereth speech, and night unto night sheweth knowledge.</p>
    <p> 3 There is no speech nor language, where their voice is not heard.</p>
    <p> 4 Their line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun,</p>
    <p> 5 Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.<br />
    Stars a STORY-book.<br />
    6 His going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof.</p>
    <p>Ps 19:7-14<br />
    7 The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.</p>
    <p> 8 The statutes of the LORD are right,  rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes.</p>
    <p> 9 The fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether.</p>
    <p> 10 More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.</p>
    <p> 11 Moreover by them is thy servant warned: and in keeping of them there is great reward.</p>
    <p> 12 Who can understand his errors? cleanse thou me from secret faults.</p>
    <p> 13 Keep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression.</p>
    <p> 14 Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer.<br />
    KJV</p>
    <p><br />
    </p>
    </div>
    <div id="Footer">Site updated June 2011</div>
    </div>
    </div>
    <div class="tooltipContent" id="sprytooltip57">
    <p><img src="images/Constellations/Corvus.jpg" width="199" height="170" alt="Corvus" />CORVUS (The Crow, or Raven).</p>
    <p> Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip56">
    <p><img src="images/Constellations/Crater.jpg" width="180" height="196" alt="Crater" /></p>
    <p>CRATER (The Cup). </p>
    <p>The cup of Divine wrath poured out upon him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip55">
    <p><img src="images/Constellations/Hydra.jpg" width="184" height="142" alt="Hydra" /></p>
    <p>HYDRA (The Serpent). That old Serpent— Devil, destroyed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip54">
    <p><img src="images/Constellations/Leo.jpg" width="198" height="130" alt="Leo" /></p>
    <p>LEO (The Lion). </p>
    <p>The Lion of the Tribe of Judah aroused for the rending of the Enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip53">
    <p>Chapter IV - TWELFTH -</p>
    <p> Messiah's Consummated Triumph      LEO (The Lion). The Lion of the Tribe of Judah aroused for the rending of the Enemy.           </p>
    <p>1. HYDRA (The Serpent). That old Serpent— Devil, destroyed.     </p>
    <p>2. CRATER (The Cup). The cup of Divine wrath poured out upon him.     </p>
    <p>3. CORVUS (The Crow, or Raven). Birds of prey devouring him.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip52">
    <p><img src="images/Constellations/Argo.jpg" width="200" height="199" alt="Argo" />ARGO (The Ship).</p>
    <p> The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip51">
    <p><img src="images/Constellations/UrsaMajor.jpg" width="200" height="150" alt="Ursa Major" />URSA MAJOR (The Great Bear).</p>
    <p> The fold and the flock.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip50">
    <p><img src="images/Constellations/UrsaMinor.jpg" width="185" height="133" alt="Ursa Minor" /></p>
    <p>URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.</p>
    <p> The 7,000...? -</p>
    <p>This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    </div>
    <div class="tooltipContent" id="sprytooltip49">
    <p><img src="images/Constellations/Cancer.jpg" width="183" height="200" alt="Cancer" />CANCER (The Crab).</p>
    <p> The possession held fast.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip48">
    <p>Chapter III ELEVENTH -</p>
    <p> Messiah's Redeemed Possessions      </p>
    <p>CANCER (The Crab). The possession held fast.          </p>
    <p>1. URSA MINOR (The Lesser Bear). </p>
    <p>The lesser sheepfold.          7,000 - This star was called by the Greeks the "Cynosure." Aratus seems to apply this term to the whole of the seven stars of the Lesser Bear. Mr. Robert Brown, Jr., shows that this word . . . transliterates An-nas-sur-ra, and renders it, "as it literally means, high in rising, i.e., in heavenly position.". Is not this the primitve truth of the Revelation? Will not this Lesser Fold be high, yea, the highest in heavenly position?</p>
    <p> 2. URSA MAJOR (The Great Bear). The fold and the flock.
    3. ARGO (The Ship). The redeemed pilgrims safe at home..</p>
    </div>
    <div class="tooltipContent" id="sprytooltip47">
    <p><img src="images/Constellations/CanisMinor.jpg" width="170" height="123" alt="CanisMinor" /></p>
    <p>CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip46"><img src="images/Constellations/CanisMajor.jpg" width="193" height="228" alt="CanisMajor" />CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.</div>
    <div class="tooltipContent" id="sprytooltip45">
    <p><img src="images/Constellations/Lepus.jpg" width="198" height="196" alt="Lepus" />LEPUS (The Hare), or</p>
    <p> THE ENEMY trodden under foot.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip44">
    <p><img src="images/Constellations/Gemini.jpg" width="197" height="228" alt="Gemini" />GEMINI (The Twins). </p>
    <p>The twofold nature of the King.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip43">
    <p>Chapter II - TENTH  - </p>
    <p>Messiah's Reign as Prince of Peace      GEMINI (The Twins). The twofold nature of the King.</p>
    <p> 1. LEPUS (The Hare), or THE ENEMY trodden under foot.<br />
    2. CANIS MAJOR (The Dog), or SIRIUS, the coming glorious Prince of Princes.<br />
    3. CANIS MINOR (The Second Dog), or PROCYON, the exalted Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip42">
    <p><img src="images/Constellations/Auriga.jpg" width="197" height="289" alt="Auriga" />AURIGA (The Shepherd). </p>
    <p>Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip41">
    <p><img src="images/Constellations/Eridanus.jpg" width="198" height="86" alt="Eridanus" />ERIDANUS (The River of the Judge). </p>
    <p>Wrath breaking forth for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip40">
    <p><img src="images/Constellations/Orion.jpg" width="185" height="262" alt="Orion" /></p>
    <p>ORION,  </p>
    <p>Light breaking forth in the person of the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip39">
    <p><img src="images/Constellations/Taurus.jpg" width="200" height="165" alt="Taurus" />TAURUS (The Bull). </p>
    <p>Messiah coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip38">
    <p>Chapter I - NINTH - </p>
    <p>Messiah, The Coming Judge of All the Earth      
    TAURUS (The Bull).</p>
    <p> Messiah coming to rule.           </p>
    <p>1. ORION,  Light breaking forth in the person of the Redeemer.</p>
    <p> 2. ERIDANUS (The River of the Judge). Wrath breaking forth for His enemies.</p>
    <p> 3. AURIGA (The Shepherd). Safety for the Redeemed in the day of that wrath.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip37">
    <p><img src="images/Constellations/Perseus.jpg" width="167" height="257" alt="Perseus" /></p>
    <p>PERSEUS (The Breaker).</p>
    <p> Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip36">
    <p><img src="images/Constellations/Cetus.jpg" width="198" height="93" alt="Cetus" />CETUS (The Sea Monster). </p>
    <p>The great enemy bound.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip35">
    <p><img src="images/Constellations/Cassiopeia.jpg" width="128" height="196" alt="Cassiopeia" /></p>
    <p>CASSIOPEIA (The Enthroned Woman).</p>
    <p> The captive delivered, and preparing for her husband, the Redeemer.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip34">
    <p><img src="images/Constellations/Aries.jpg" width="200" height="165" alt="Aries" />ARIES (The Ram or Lamb). </p>
    <p>The Lamb that was slain, prepared for the victory.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip33">
    <p>Chapter IV - EIGHTH - </p>
    <p>Their Blessings Consummated and Enjoyed      ARIES (The Ram or Lamb).</p>
    <p> The Lamb that was slain, prepared for the victory.</p>
    <p> 1. CASSIOPEIA (The Enthroned Woman). </p>
    <p>The captive delivered, and preparing for her husband, the Redeemer.</p>
    <p> 2. CETUS (The Sea Monster).</p>
    <p> The great enemy bound.</p>
    <p> 3. PERSEUS (The Breaker). </p>
    <p>Delivering His redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip32">
    <p><img src="images/Constellations/Cephus.jpg" width="144" height="164" alt="Cephus" /></p>
    <p>CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip31">
    <p><img src="images/Constellations/Andromeda.jpg" width="181" height="189" alt="Andromeda" />ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip30">
    <p><img src="images/Constellations/Pisces.jpg" width="198" height="94" alt="Pisces" />PISCES (The Fishes). </p>
    <p>The Redeemed blessed though bound.</p>
    <p> </p>
    <p> THE BAND—, but binding their great enemy Cetus, the sea monster.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip29">
    <p>Chapter III - SEVENTH - </p>
    <p>Their Blessings in Abeyance      PISCES</p>
    <p> (The Fishes). </p>
    <p>The Redeemed blessed though bound.           </p>
    <p>1. THE BAND—,</p>
    <p> but binding their great enemy Cetus, the sea monster.</p>
    <p> 2. ANDROMEDA (The Chained Woman).</p>
    <p> The Redeemed in their bondage and affliction.
    3. CEPHEUS (The King).</p>
    <p> Their Redeemer coming to rule.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip28">
    <p><img src="images/Constellations/Cygnus.jpg" width="198" height="224" alt="Cygnus" />CYGNUS (The Swan). </p>
    <p>The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip27">
    <p><img src="images/Constellations/Pegasus.jpg" width="201" height="130" alt="Pegasus" />PEGASUS (The Winged Horse).</p>
    <p> The blessings quickly coming.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip26">
    <p><img src="images/Constellations/Aquarius.jpg" width="198" height="109" alt="Aquarius" />AQUARIUS (The Water-Bearer).</p>
    <p> The living waters of blessing poured forth for the Redeemed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip25">
    <p><img src="images/Constellations/PicisAustralis.jpg" width="198" height="63" alt="Piscis Australis" />PISCIS AUSTRALIS (The Southern Fish).</p>
    <p> The blessings bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip24">
    <p>Chapter II - SIXTH  -</p>
    <p>Their Blessings Ensured      AQUARIUS </p>
    <p>(The Water-Bearer). </p>
    <p>The living waters of blessing poured forth for the Redeemed.</p>
    <p> 1. PISCIS AUSTRALIS (The Southern Fish). The blessings bestowed.     </p>
    <p>2. PEGASUS (The Winged Horse). The blessings quickly coming.</p>
    <p> 3. CYGNUS (The Swan). The Blesser surely returning.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip23">
    <p><img src="images/Constellations/Trio.jpg" width="198" height="133" alt="Trio" />1. SAGITTA (The Arrow). </p>
    <p>The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle). </p>
    <p>The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin). </p>
    <p>The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip22"><img src="images/Constellations/Capricornus.jpg" width="199" height="145" alt="Capricornus" />CAPRICORNUS (The fish-goat). The goat of Atonement slain for the Redeemed.</div>
    <div class="tooltipContent" id="sprytooltip21">
    <p>Chapter I - FIFTH -</p>
    <p> Their Blessings Procured      
    CAPRICORNUS (The fish-goat). </p>
    <p>The goat of Atonement slain for the Redeemed.           
    1. SAGITTA (The Arrow).</p>
    <p> The arrow of God sent forth.</p>
    <p> 2. AQUILA (The Eagle).</p>
    <p> The smitten One falling.</p>
    <p> 3. DELPHINUS (The Dolphin).</p>
    <p> The dead One rising again.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip20"><img src="images/Constellations/DracoMap.jpg" width="200" height="161" alt="Draco" />DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</div>
    <div class="tooltipContent" id="sprytooltip19">
    <p><img src="images/Constellations/Ara.jpg" width="143" height="142" alt="Ara" /></p>
    <p>ARA (The Altar). Consuming fire prepared for His enemies.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip18">
    <p><img src="images/Constellations/Lyra.jpg" width="139" height="117" alt="Lyra" />. </p>
    <p>LYRA (The Harp).</p>
    <p> Praise prepared for the Conqueror.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip17"><img src="images/Constellations/Safittarius.jpg" width="198" height="213" alt="Sagittarius" />SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</div>
    <div class="tooltipContent" id="sprytooltip16">
    <p>Chapter IV -</p>
    <p> The Redeemer's Triumph      
    SAGITTARIUS (The Archer). The two-natured Conqueror going forth "Conquering and to conquer."</p>
    <p>           
    1. LYRA (The Harp). Praise prepared for the Conqueror.</p>
    <p> 2. ARA (The Altar). Consuming fire prepared for His enemies.    </p>
    <p>3. DRACO (The Dragon). The Old Serpent— Devil, cast down from heaven.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip15"> <img src="images/Constellations/Hercules.jpg" width="198" height="190" alt="Hercules" />HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip14"><img src="images/Constellations/Serpens.jpg" width="199" height="152" alt="Serpens" />SERPENS (The Serpent struggling with the man).</div>
    <div class="tooltipContent" id="sprytooltip13">
    <p><img src="images/Constellations/Ophiuchus.jpg" width="199" height="227" alt="Ophiuchus" /></p>
    <p>O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip12"><img src="images/Constellations/Scorpio.jpg" width="198" height="186" alt="Scorpio" />SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.</div>
    <div class="tooltipContent" id="sprytooltip11">Chapter III - THIRD  - The Redeemer's Conflict SCORPIO (The Scorpion) seeking to wound, but itself trodden under foot.      <br />
    1. SERPENS (The Serpent struggling with the man). <br />
    <br />
    2. O-PHI-U-CHUS (The man grasping the serpent). The struggle with the enemy. <br />
    <br />
    3. HERCULES (The mighty man. A man kneeling on one knee, humbled in the conflict, but holding aloft the tokens of victory, with his foot on the head of the Dragon). The mighty Vanquisher seeming to sink in the conflict.</div>
    <div class="tooltipContent" id="sprytooltip10">
    <p>Chapter II - SECOND -  The Redeemer's Atoning Work</p>
    <p> LIBRA (The Scales). The price deficient balanced by the price which covers. <br />
    1. CRUX,  The Cross endured. <br />
    <br />
    2. LUPUS, or VICTIMA, The Victim slain. <br />
    <br />
    3. CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip9">
    <p>Chapter I -FIRST -  The Prophecy of the Promised Seed of the Woman</p>
    <p><br />
    VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman. <br />
    1. COMA (The Desired. The woman and child). The Desired of all nations. <br />
    <br />
    2. CENTAURUS (The Centaur with two natures, holding a spear piercing a victim). The despised sin offering. <br />
    <br />
    3. BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip8">
    <p><img src="images/Constellations/CoronaBorealis.jpg" width="69" height="55" alt="CoronaBorealis" /></p>
    <p>CORONA, The Crown bestowed.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip7"> <img src="images/Constellations/LupusOrTheVictim.jpg" width="197" height="191" alt="Lupus" />LUPUS, or VICTIMA, The Victim slain.</div>
    <div class="tooltipContent" id="sprytooltip6">
    <p><img src="images/Constellations/Crux.jpg" width="67" height="100" alt="Crux" /></p>
    <p>CRUX,  The Cross endured.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip5">
    <p><img src="images/Constellations/Libra.jpg" width="185" height="176" alt="Libra" /></p>
    <p>LIBRA (The Scales). The price deficient balanced by the price which covers.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip4">
    <p><img src="images/Constellations/Bootes.jpg" width="162" height="191" alt="Bootes" /></p>
    <p>BOOTES (a man walking bearing a branch called ARCTURUS, meaning the same). He cometh!</p>
    </div>
    <div class="tooltipContent" id="sprytooltip3"><img src="images/Constellations/Centaurus.jpg" width="198" height="123" alt="Centaurus Pic" />Centaurus -(The Centaur with two natures, holding a spear piercing a victim). The despised sin offering.</div>
    <div class="tooltipContent" id="sprytooltip2">
    <p><img src="images/Constellations/Coma.jpg" width="156" height="161" alt="Coma" /></p>
    <p>Coma (The Desired. The woman and child). The Desired of all nations.</p>
    </div>
    <div class="tooltipContent" id="sprytooltip1"><img src="images/Constellations/Virgo.jpg" width="199" height="364" alt="Virgo Pic" />Virgo VIRGO (The Virgin. A woman bearing a branch in her right hand and an ear of corn in her left). The Promised Seed of the woman.</div>
    <script type="text/javascript">
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip2 = new Spry.Widget.Tooltip("sprytooltip2", "#sprytrigger2", {offsetX:-450, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip3 = new Spry.Widget.Tooltip("sprytooltip3", "#sprytrigger3", {useEffect:"fade", closeOnTooltipLeave:true, offsetX:-400, followMouse:true});
    var sprytooltip4 = new Spry.Widget.Tooltip("sprytooltip4", "#sprytrigger4", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip5 = new Spry.Widget.Tooltip("sprytooltip5", "#sprytrigger5", {useEffect:"fade", offsetX:-470, closeOnTooltipLeave:true});
    var sprytooltip6 = new Spry.Widget.Tooltip("sprytooltip6", "#sprytrigger6", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip7 = new Spry.Widget.Tooltip("sprytooltip7", "#sprytrigger7", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip8 = new Spry.Widget.Tooltip("sprytooltip8", "#sprytrigger8", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip9 = new Spry.Widget.Tooltip("sprytooltip9", "#sprytrigger9", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip10 = new Spry.Widget.Tooltip("sprytooltip10", "#sprytrigger10", {offsetX:-450, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip11 = new Spry.Widget.Tooltip("sprytooltip11", "#sprytrigger11", {offsetX:-500, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip12 = new Spry.Widget.Tooltip("sprytooltip12", "#sprytrigger12", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip13 = new Spry.Widget.Tooltip("sprytooltip13", "#sprytrigger13", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip14 = new Spry.Widget.Tooltip("sprytooltip14", "#sprytrigger14", {offsetX:-800, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    var sprytooltip15 = new Spry.Widget.Tooltip("sprytooltip15", "#sprytrigger15", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip16 = new Spry.Widget.Tooltip("sprytooltip16", "#sprytrigger16", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip17 = new Spry.Widget.Tooltip("sprytooltip17", "#sprytrigger17", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip18 = new Spry.Widget.Tooltip("sprytooltip18", "#sprytrigger18", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip19 = new Spry.Widget.Tooltip("sprytooltip19", "#sprytrigger19", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip20 = new Spry.Widget.Tooltip("sprytooltip20", "#sprytrigger20", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip21 = new Spry.Widget.Tooltip("sprytooltip21", "#sprytrigger21", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip22 = new Spry.Widget.Tooltip("sprytooltip22", "#sprytrigger22", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip23 = new Spry.Widget.Tooltip("sprytooltip23", "#sprytrigger23", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip24 = new Spry.Widget.Tooltip("sprytooltip24", "#sprytrigger24", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip25 = new Spry.Widget.Tooltip("sprytooltip25", "#sprytrigger25", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip26 = new Spry.Widget.Tooltip("sprytooltip26", "#sprytrigger26", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip27 = new Spry.Widget.Tooltip("sprytooltip27", "#sprytrigger27", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true});
    var sprytooltip28 = new Spry.Widget.Tooltip("sprytooltip28", "#sprytrigger28", {useEffect:"fade", offsetX:-800, closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip29 = new Spry.Widget.Tooltip("sprytooltip29", "#sprytrigger29", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip30 = new Spry.Widget.Tooltip("sprytooltip30", "#sprytrigger30", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip31 = new Spry.Widget.Tooltip("sprytooltip31", "#sprytrigger31", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip32 = new Spry.Widget.Tooltip("sprytooltip32", "#sprytrigger32", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip33 = new Spry.Widget.Tooltip("sprytooltip33", "#sprytrigger33", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip34 = new Spry.Widget.Tooltip("sprytooltip34", "#sprytrigger34", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip35 = new Spry.Widget.Tooltip("sprytooltip35", "#sprytrigger35", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip36 = new Spry.Widget.Tooltip("sprytooltip36", "#sprytrigger36", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip37 = new Spry.Widget.Tooltip("sprytooltip37", "#sprytrigger37", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip38 = new Spry.Widget.Tooltip("sprytooltip38", "#sprytrigger38", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip39 = new Spry.Widget.Tooltip("sprytooltip39", "#sprytrigger39", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip40 = new Spry.Widget.Tooltip("sprytooltip40", "#sprytrigger40", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip41 = new Spry.Widget.Tooltip("sprytooltip41", "#sprytrigger41", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip42 = new Spry.Widget.Tooltip("sprytooltip42", "#sprytrigger42", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip43 = new Spry.Widget.Tooltip("sprytooltip43", "#sprytrigger43", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip44 = new Spry.Widget.Tooltip("sprytooltip44", "#sprytrigger44", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip45 = new Spry.Widget.Tooltip("sprytooltip45", "#sprytrigger45", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip46 = new Spry.Widget.Tooltip("sprytooltip46", "#sprytrigger46", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip47 = new Spry.Widget.Tooltip("sprytooltip47", "#sprytrigger47", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip48 = new Spry.Widget.Tooltip("sprytooltip48", "#sprytrigger48", {offsetX:-400, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip49 = new Spry.Widget.Tooltip("sprytooltip49", "#sprytrigger49", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip50 = new Spry.Widget.Tooltip("sprytooltip50", "#sprytrigger50", {offsetX:-800, useEffect:"fade", followMouse:true, closeOnTooltipLeave:true});
    var sprytooltip51 = new Spry.Widget.Tooltip("sprytooltip51", "#sprytrigger51", {offsetX:-800, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip52 = new Spry.Widget.Tooltip("sprytooltip52", "#sprytrigger52", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip53 = new Spry.Widget.Tooltip("sprytooltip53", "#sprytrigger53", {offsetX:-400, followMouse:true, closeOnTooltipLeave:true, useEffect:"fade"});
    var sprytooltip54 = new Spry.Widget.Tooltip("sprytooltip54", "#sprytrigger54", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip55 = new Spry.Widget.Tooltip("sprytooltip55", "#sprytrigger55", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip56 = new Spry.Widget.Tooltip("sprytooltip56", "#sprytrigger56", {offsetX:-400, useEffect:"fade", closeOnTooltipLeave:true, followMouse:true});
    var sprytooltip57 = new Spry.Widget.Tooltip("sprytooltip57", "#sprytrigger57", {offsetX:-403, closeOnTooltipLeave:true, useEffect:"fade", followMouse:true});
    </script>
    </body>
    </html> 

  • HT1212 How do i restore my iphone when it has been disabled and can not be restored through itunes because of the error message that says "The iphone software update server could not be contacted.

    How do i restore my iphone when it has been disabled and cannot be restored through itunes because of the error message that says "The iphone software update server could not be contacted

    Have you jailbroken this device? This will make the iPhone not talk to the Software Update Server (that signs and accepts software updates) please refer to the following link? Error 3194, Error 17, or "This device isn't eligible for the requested build"
    The iPhone will talk to the software update servers, just need to change the host files, it's a simple process, sorry if you were confused about the wording in to top?

  • Why do Sony DSC-RX100M3 raw files look strange in PE9 when flash has been used in the shot?

    I have just bought a Sony DSC-RX100M3 camera and use it to shoot raw + jpeg.  I want to use the raw files in my Photoshop Elements 9, which has the Camera Raw plug-in version 6.5.0.216 installed. I have downloaded the Adobe DNG converter version 8.7.1.311 so I can import my Sony raw files into PE 9 as they cannot be used directly. Most of the time these raw files look OK, but when I use the flash on my camera and then look at the raw files in PE9 they look far more pink than the corresponding jpeg files. The jpeg files look more or less as I remember the scene when I shot the picture.
    When I look at the same raw and jpeg files in Sony's own Image Data Converter software (version 4.2.04.17270) the raw and jpeg files look very similar to one another, and there is no pink colour cast in the raw file.
    What am I doing wrong in Photoshop Elements? I though the DNG converter keeps all the information from the original raw file and makes no changes to it, so why does the raw file look so different when flash has been used?
    Thanks for any help you can give!
    AVM

    Looking at the pictures of the camera online, I'd say there is no lens shade--a device to keep light from the sides from causing lens flare--and the camera lens, itself, was just too far extended and there was a lens shadow.  You probably can't use the flash that close up and should back off and zoom in further.  Experimenting would give you a sense of what situations will have a shadow of the lens or not.
    Your ACR plug-in is old enough not use have Process Version 2012, yet, only 2010 and 2003 so Adobe didn't have the idea to put the selector down next to the camera profile. The toning options are better with Process 2012 so that would be a reason to upgrade, but I am not sure that the Camera Neutral profile in PSE9 would be different than PSE13.  If Adobe changed the camera profiles then people's pictures would look different once they upgraded to a new version and that's not something that's supposed to happen.
    You can certainly download the PSE13 trial and see if things look any different, but they may not:  Download a free trial or buy Adobe products | Adobe downloads   There would be newer minimum OS version requirements for the newer versions of Adobe software so check those out before trying to install, unless you're on Windows 7+ or OSX 10.8+ then it should be fine.
    One more thing, the White-Balance tint is set to +10 by the camera:
    This As Shot WB is more magenta and even when using the Adobe Standard profile, moving the Tint down to +0 makes things a little more green like your camera JPG.  So there is more than just changing the camera profile that you can do:

  • How do I unlock my iPod touch when it has been disabled?

    How do I unlock my iPod touch when it has been disabled? My children can't remember the four digit pass code they entered and it is now disabled.

    Recovery mode...
    http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • Why is the message app popping up on my mac when everything has been disabled on my iphone and mac, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!

    Why is the message app popping up on my mac when everything has been disabled on my iphone and mac as per the instructions all over this forum, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!
    Have disabled in Messages > preferences on the Mac
    imessage is disabled on my iphone
    Same goes for Safari which pops up on the mac when I open it on my iphone, how can I disable it all?

    Thanks but have signed out, disabled and nothing.
    It's Yosemite not Mavericks.
    What it won't let me do is delete the account as the - button is greyed
    out.
    It won't let me delete the app from the OS
    On Monday, February 2, 2015, Apple Support Communities Updates <

  • Is it possible to block an ipod touch when it has been stolen ?

    Is it possible to block an ipod touch when it has been stolen ?

    - If you previously turned on FIndMyiPod and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have to iPod play a sound via iCloud.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing
    Reporting a lost or stolen Apple product
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • When PayPal has been activated, can a person submit form without making a payment

    When PayPal has been activated, can a person submit form without making a payment, for instance, if they prefer to pay by check.

    Hi Guanshuai,
    Thanks. I’m going to try it!
    Best,
    Herman
    Re: When PayPal has been activated, can a person submit form without making a payment
    created by GuanshuaiQiao <http://forums.adobe.com/people/GuanshuaiQiao>  in FormsCentral - View the full discussion <http://forums.adobe.com/message/5632549#5632549

  • Can you locate an iphone when it has been turned off or stolen?

    Can u locate an iphone when it has been turned off or stolen?

    No if it's turned OFF.

  • HT1222 i have low battery indicator when phone has been charged

    i have a low battery even when phone has been charged

    Battery meter recalibration...
    Fully discharg (until it shuts off) and then fully recharging (don't unplug until 100%) to recalibrate the battery meter.  You may need to do this a few times.

Maybe you are looking for

  • Nokia 5800 Maps and GPS

    I live in New Zealand and will be travelling too Hawaii next month, if I use the phone for GPS will I be charged for global roaming data?

  • Ipod touch in France

    Hello everyone, I am considering buying an ipod touch to use on a trip to France. One feature that is of particular interest is the maps function. Will I be able to use it in Paris and elsewhere in France or is it hopeless to find an open Wifi there

  • Condition types from SRM to backend

    Hi All, When accepted bid (complex prices with condition types) is converted to PO, in backend PO is created with net price only. Is there a way to move the condition types also to backend. Can we use any Badi in this case? Thanks in advance. Will re

  • Ses Workflow posting delayed

    Hi, sap  Workflow for Service entry sheet is triggered and the user has approved th workflow by using the decesion task , pressing Approve button the workflow log shows the time stamp as 30/04/2010 approval date But the actual release fo the service

  • New Playbook First Use Error on OS update to version 2.1.0.1055

    I just bought a new BB Playbook on Amazon and I'm having trouble on my first use, the os update always fail. The download was complete and installation reaches 100% but in the end it says Update failed and requires a restart. I have done this several