/* hcw_v02.js

	Author:
		Eduardo Adrian Oliveira.

	Acknowledgements:
		The Hexa-U Community: technical, design, and one and all (Berners-Lee et al.),
		and all informaticians and other contributors to the art and craft of software, past and present.
		All artists and artisans, thinkers and feelers, and all doers, past and present, 
		inspiring and promoting good things.

	Note to fellow programmers and designers:
		Borrowing this code? I am honored!
		Please don't remove this following copyright (copyleft) notice from the source:

	Copyright (Copyleft) Notice:
		All original JavaScript programming:
		Copyright © 2002 Eduardo Adrian Oliveira; 
		this information may be copied, distributed and/or modified under certain conditions, 
		but it comes WITHOUT ANY WARRANTY; see the Design Science License for more details.
		(http://dsl.org/copyleft/dsl.txt)

	       All and any other marks property of their respective owners.
	       
	Original Version:
		2002-10-11.
	Last Revision:
		2002-10-19.
*/

window.onerror=null;

function BreakFree() 
{
	sLocn = self.location
	if (self.parent.frames.length != 0) {
		self.parent.location=sLocn; 
	}
}

function PreloadImages ()
{
	if (document.images)
	{
		imgBuffer = new Image;
		imgBuffer.src = "logoepru.png";
		imgBuffer.src = "logomure.png";
		imgBuffer.src = "logoleba.png";
		imgBuffer.src = "logochreo.png";
		imgBuffer.src = "logovril.png";
		imgBuffer.src = "logoroc.png";
		imgBuffer.src = "logozur.png";
	}
}

function LogoHint(sCode, sMsg)
{
	if (document.images) {
		document.images["HcwLogo"].src="logo" + sCode + ".png"
	}
	window.status = sMsg
}

function VLogoHint(sCode, sMsg)
{
	if (document.images) {
		document.images["VHcwLogo"].src="logo" + sCode + "v.png"
	}
	window.status = sMsg
}

setTimeout ("BreakFree()", 3210);
PreloadImages();

sBaseLogo = "epru"; // base logo image


