function openDetailImage( image, width, height, alt, lang ) {


	if ( ! lang ) {
		lang = 'en';
	}
    url = '/_metapages/detailimage.php?image='+image+'&width='+width;
    url += '&height='+height+'&alt='+alt;
    url += '&lang='+lang;
    
    winHeight = parseInt(height) + 20;
    winWidth = parseInt(width) + 20;
    popup = window.open( url, 'DetailImage', 'height='+winHeight+',width='+winWidth+'' );
    return false;
}


function DonationRedirect() {
	field = document.getElementById( 'donationCountry' );
	url = field.options[ field.selectedIndex ].value;
	if ( url != '' ) {
	   document.location.href = url;
	}
	return false;
}

function buildRhoLiveParams( params ) {
	tag = ''; 

	if ( navigator.cookieEnabled ) {
		params[ 'con' ] = 1;
	}
	
	// build paramstring for IMG-url
	for ( var key in params ) {
	    tag += '&amp;' + key + '=' + params[ key ];
	}
	return tag;
}

//configure iframe src for ZOOMBOX
var baseDir="/_static/";//configure this to the directory you wish to keep the magnifier files in i.e. /magnifyfile/
var zoomFactor=15;//percentage int[1-100]
var startZoom='150%';//percentage string[>= 0]
var imgFolder = "/_images/";
var iframeSrc = "zoom.html";
var tempY,tempX,initialized,X,Y,rX,rY,tempW,tempH,resizeInitialized,zoomIframe,zoomBox,zoomObjStyle,objToResize;
var ie55 = false;
var firstTableWidth;