

//================================================================================
function naDa(){window.status='';}

//================================================================================	
function Go(){return}
	
//================================================================================
function popUp(sURL, iX, iY) {
	day = new Date();
	id = day.getTime();
	eval("var page" + id + " = window.open(sURL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + iX + ",height=" + iY + "');");
	eval("page" + id + ".focus();");
}


//================================================================================
function popUpTools(sURL, iX, iY) {
	day = new Date();
	id = day.getTime();
	eval("var page" + id + " = window.open(sURL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + iX + ",height=" + iY + "');");
	eval("page" + id + ".focus();");
}

//================================================================================

//================================================================================
function popUpScroll(sURL, iX, iY) {
	day = new Date();
	id = day.getTime();
	eval("var page" + id + " = window.open(sURL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + iX + ",height=" + iY + "');");
	eval("page" + id + ".focus();");
}

//================================================================================

// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)

//================================================================================
function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}

//================================================================================
function loadSlide(imageURL) {
	if (gImageCapableBrowser) {
		document.slide.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}

//================================================================================
function nextSlide() {
	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
	loadSlide(gImages[gCurrentImage]);
}




