function m_over(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#003399";
	x.event.srcElement.style.color = "yellow";
	x.event.srcElement.style.cursor = "hand";
}

function m_out(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#0066CC";
	x.event.srcElement.style.color = "white";
	x.event.srcElement.style.cursor = "default";
}

function m_click(dest) 
{
	window.navigate(dest);
}


function n_over(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#0066CC";
	x.event.srcElement.style.color = "white";
	x.event.srcElement.style.cursor = "hand";
}

function n_out(x) 
{
	if(x == null)
		x= window;
	x.event.srcElement.style.background="#99CCFF";
	x.event.srcElement.style.color = "sienna";
	x.event.srcElement.style.cursor = "default";
}

function handleMouseover() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag == "A") eSrc.style.textDecoration = "underline";
}

function handleMouseout() {
	eSrc = window.event.srcElement;
	eSrcTag=eSrc.tagName.toUpperCase();
	if (eSrcTag == "A") eSrc.style.textDecoration = "";
}
function openDialog(URL)
{
	return window.open(URL,"test","resizable=yes,status=no,toolbar=no,location=no");
}



function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		generic2_04_over = newImage("images/generic2_04-over.gif");
		generic2_05_generic2_04_over = newImage("images/generic2_05-generic2_04_ove.gif");
		generic2_05_over = newImage("images/generic2_05-over.gif");
		generic2_06_over = newImage("images/generic2_06-over.gif");
		generic2_09_over = newImage("images/generic2_09-over.gif");
		generic2_10_over = newImage("images/generic2_10-over.gif");
		generic2_11_generic2_10_over = newImage("images/generic2_11-generic2_10_ove.gif");
		generic2_12_over = newImage("images/generic2_12-over.gif");
		generic2_13_over = newImage("images/generic2_13-over.gif");
		generic2_15_over = newImage("images/generic2_15-over.gif");
		generic2_17_over = newImage("images/generic2_17-over.gif");
		generic2_18_over = newImage("images/generic2_18-over.gif");
		preloadFlag = true;
	}
}



document.onmouseover=handleMouseover;
document.onmouseout=handleMouseout;

window.onload=window_onload;

function window_onload()
{
//	var title = top.document.all("title");
//	
//	if (title != null)
//	{
//		title.filters[0].Apply(); 
//		title.innerHTML = document.title; 
//		title.filters[0].Play(); 
//	};
	
	preloadImages()
}
