
// Show-Big-Image
<!---
var bigpicWin = null;

function showbigimage(url, picwidth, picheight, description)
{
if (!bigpicWin || bigpicWin.closed)
{
usrwidth = screen.width;
usrheight = screen.height;

winwidth = picwidth;
winheight = picheight;

//var X = (usrwidth - winwidth) / 2;
//var Y = (usrheight - winheight) / 2;
var X = 10;
var Y = 10;
properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width="+winwidth+",height="+winheight+",";

checkie = navigator.appName.indexOf("icrosoft");
if (checkie == -1)
{
properties = properties+"screenX="+X+",screenY="+Y;
}
else
{
properties = properties+"left="+X+",top="+Y;
}
bigpicWin = window.open('','bigpicWin',properties);

bigpicWin.document.open();
bigpicWin.document.write('<HTML><HEAD>');
bigpicWin.document.write('<TITLE>'+'Big Image'+'</TITLE>');
bigpicWin.document.write('<meta http-equiv="imagetoolbar" content="no"><style>.large {FONT-WEIGHT: bold; FONT-SIZE: 16px; COLOR: 0D5209; FONT-FAMILY:  Arial; TEXT-DECORATION: none}</style></HEAD>');
bigpicWin.document.write('<BODY marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0>');
bigpicWin.document.write('<table width=100% border=0 cellpadding=0 cellspacing=0><!--tr><td background=images/index_09-1.jpg><img src=images/0.gif width=223 height=26></tr-->');
bigpicWin.document.write('<tr><td class=large align=center><A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" border=0>'+'</A></td></tr>');
bigpicWin.document.write('<tr><td align=center>' +description+ '</td></tr>');	
bigpicWin.document.write('<!--tr><td background=images/index_09-1.jpg height=26>&nbsp;</td></tr--></table></BODY></HTML>');
bigpicWin.document.close()

bigpicWin.focus();
}
else
{
bigpicWin.focus();
}
}
//--->
//*****************************************************************************

// Jump-To-Top
<!-- Begin
function setVariables() {
imgwidth=25;
imgheight=2;
if (navigator.appName == "Netscape") {
horz=".left";
vert=".top";
docStyle="document.";
styleDoc="";
innerW="window.innerWidth";
innerH="window.innerHeight";
offsetX="window.pageXOffset";
offsetY="window.pageYOffset";
}
else {
horz=".pixelLeft";
vert=".pixelTop";
docStyle="";
styleDoc=".style";
innerW="document.body.clientWidth";
innerH="document.body.clientHeight";
offsetX="document.body.scrollLeft";
offsetY="document.body.scrollTop";
   }
}
function checkLocation() {
objectXY="branding";
var availableX=eval(innerW);
var availableY=eval(innerH);
var currentX=eval(offsetX);
var currentY=eval(offsetY);
x=availableX-(imgwidth+30)+currentX;
y=availableY-(imgheight+20)+currentY;
evalMove();
setTimeout("checkLocation()",10);
}
function evalMove() {
eval(docStyle + objectXY + styleDoc + horz + "=" + x);
eval(docStyle + objectXY + styleDoc + vert + "=" + y);
}
// End -->
//*************************************************************************************************
