// -----------------------------------------------------------------------
// Copyright 2004 Böttcher Nordic AB
//
// Produced by d-evolution HB - http://www.devolution.se
// -----------------------------------------------------------------------

var imageCache = new Array();

function preLoadImages()
{
	
	imageCache[0] = new Image();
	imageCache[0].src = 'pics/usa_flag.gif';
	
	imageCache[1] = new Image();
	imageCache[1].src = 'pics/usa_flag_over.gif';
	
	imageCache[2] = new Image();
	imageCache[2].src = 'pics/germany_flag.gif';
	
	imageCache[3] = new Image();
	imageCache[3].src = 'pics/germany_flag_over.gif';
}

preLoadImages();


function imgRollover( name, isOver )
{
	if( window.document.images )
	{
		if( isOver )
			window.document.images[name].src = "images/" + name + "_ov.gif";
		else
			window.document.images[name].src =  "images/" + name + ".gif";
	}
}

function popUpWin(urllink, topic)
{
	newWin = window.open(urllink, topic, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=400');
}

function popUpWinEx(urllink, topic, winWidth, winHeight)
{
	newWin = window.open(urllink, topic, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + winWidth + ',height=' + winHeight);
}
