function launch(selectorator){
	if(selectorator!=""){
		var locatorator = "dc.html?locale="+selectorator;
		window.open(locatorator,"dc","width=700,height=500,left=55,top=28", scrollbars=0);
	}
}

var theImage
function getImage(img){
	theImage=new Image();
	theImage.src=(img+"?stamp="+Math.floor(Math.random()*10000000));
	useImage(img);
}
function useImage(img){
	if(theImage.width!=0&&theImage.height!=0){
		popupImage(img);
	}
	else{
		setTimeout("useImage('"+img+"')",20);
	}
}
function popupImage(img){
	width=theImage.width;
	height=theImage.height;
	window.open("photoviewer.html?img="+img+"&width="+width+"&height="+height,"","width="+width+",height="+height);
}
