<!--

// Creating a new popup window.
var ifw1 = null
function MakeWindow()

{
ifw1=window.open("","Outside","toolbar=yes,directories=no,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=600,height=300");
ifw1.focus()
}

var ifw1 = null
function WholeWindow()
{
ifw1=window.open("","NewWin","toolbar=yes,directories=yes,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=600,height=300");
ifw1.focus()
}

var ifw1 = null
// Creating a new popup window.
function newWindow()
{
	ifw1=window.open("","Talk","toolbar=no,location=no, status=no,menubar=no,resizable=no,scrollbars=yes,width=600,height=310");
ifw1.focus()
}


// Loading in two frames at onece
function LoadTwo(fileName1,fileName2) {
       parent.Sidebar.location.href = fileName1;
       parent.Text.location.href = fileName2;
}

// creating a floating window with image
function Floater(imageName,imageHeight,imageWidth) {
//FloatPic=window.open(imageName,"MapPic","width="+imageWidth+",height="+imageHeight+",toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no")
FloatPic=window.open(imageName,"MapPic","width="+imageWidth+",height="+imageHeight)
}

//Preload two images
function Preload(original,overlay){
	Orig = new Image();
	Orig.src=original;
	Over = new Image();
	Over.src=overlay;
}   
function Preload2(original,overlay){
	Orig2 = new Image();
	Orig2.src=original;
	Over2 = new Image();
	Over2.src=overlay;
}   

// Make a box window with no butsa and pieces
function BoxWindow(PopUpName)
{
	ifw1=window.open("",PopUpName,"toolbar=no, directories=no, status=no,menubar=yes,resizable=yes,scrollbars=yes,width=600,height=300")
ifw1.focus()
}

// Logo Branding 
<!-- Original:  Randy Bennett (rbennett@thezone.net) -->
<!-- Web Site:  http://home.thezone.net/~rbennett/utility/javahead.htm -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function setVariables() {
imgwidth=42;  // logo width, in pixels
imgheight=100;  // logo height, in pixels
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 -->


// -->
