/*
M. Battilana
19 November 2005
Creates the popup
*/
var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

/*
M. Battilana
26 November 2005
Code for ImageReady generated HTML
*/
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) {
		id20051126_splash_02_ImageMap_05_over = newImage("gfx/index/20051126-splash_02-ImageMap.gif");
		id20051126_splash_03_ImageMap_05_over = newImage("gfx/index/20051126-splash_03-ImageMap.gif");
		id20051126_splash_03_ImageMap_06_over = newImage("gfx/index/20051126-splash_03-Image-07.gif");
		id20051126_splash_03_ImageMap_02_over = newImage("gfx/index/20051126-splash_03-Image-08.gif");
		id20051126_splash_04_ImageMap_06_over = newImage("gfx/index/20051126-splash_04-ImageMap.gif");
		id20051126_splash_05_ImageMap_06_over = newImage("gfx/index/20051126-splash_05-ImageMap.gif");
		id20051126_splash_06_ImageMap_05_over = newImage("gfx/index/20051126-splash_06-ImageMap.gif");
		id20051126_splash_09_ImageMap_04_over = newImage("gfx/index/20051126-splash_09-ImageMap.gif");
		id20051126_splash_10_ImageMap_03_over = newImage("gfx/index/20051126-splash_10-ImageMap.gif");
		id20051126_splash_10_ImageMap_04_over = newImage("gfx/index/20051126-splash_10-Image-21.gif");
		id20051126_splash_12_ImageMap_07_over = newImage("gfx/index/20051126-splash_12-ImageMap.gif");
		id20051126_splash_16_ImageMap_08_over = newImage("gfx/index/20051126-splash_16-ImageMap.gif");
		id20051126_splash_17_ImageMap_08_over = newImage("gfx/index/20051126-splash_17-ImageMap.gif");
		id20051126_splash_18_ImageMap_03_over = newImage("gfx/index/20051126-splash_18-ImageMap.gif");
		id20051126_splash_20_ImageMap_03_over = newImage("gfx/index/20051126-splash_20-ImageMap.gif");
		id20051126_splash_21_ImageMap_01_over = newImage("gfx/index/20051126-splash_21-ImageMap.gif");
		id20051126_splash_23_ImageMap_02_over = newImage("gfx/index/20051126-splash_23-ImageMap.gif");
		preloadFlag = true;
	}
}

preloadImages();