<!--

// Creating a new popup window.
var ifw1 = null
function MakeWindow()
{
ifw1=window.open("","Outside","toolbar=yes,directories=yes,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=600,height=300");
ifw1.focus()
}

// 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()
}

function Popup(ImageName,imageHeight,imageWidth)
{
	ifw1=window.open(ImageName,"FEBBC","toolbar=no,location=no, status=no,menubar=no,resizable=yes,scrollbars=no,width="+imageWidth+",height="+imageHeight);
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)
}

//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 bitsa 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()
}



// -->
