Screenshot = new NewAjax();
var omfg, img_width, img_height;

function SearchScreenshot(img, wi, he) {
	omfg = img;
	img_width = wi;
	img_height = he;
	Screenshot.open("GET", img, true);
	Screenshot.onreadystatechange = ShowScreenshot;
	Screenshot.send(null);
}

function ShowScreenshot() {
	if(Screenshot.readyState == 4) {
		document.getElementById('fullscreen_div').style.display = 'block';
		document.getElementById('showscreenshot').innerHTML = '<div align="right"><img src="images/design/close.png" style="margin: 0 0 10px 0; cursor:pointer;" onclick="CloseScreenshot();" title="Bild schliessen" /></div>';
		document.getElementById('showscreenshot').innerHTML += '<div style="width:' + img_width + 'px; height:' + img_height + 'px; background-image: url(' + omfg + '); border:1px solid #222222"><div style="width:100%; height:100%;"></div></div>';
	}
	else if(Screenshot.readyState == 1) {
		document.getElementById('fullscreen_div').style.display = 'block';
		document.getElementById('showscreenshot').style.width = img_width + 'px';
		document.getElementById('showscreenshot').style.height = (img_height + 32)  + 'px';
		document.getElementById("showscreenshot").innerHTML = '<img src="images/design/loader2.gif" /><br />Bild wird geladen...';
	}	
}

function CloseScreenshot() {
	document.getElementById('fullscreen_div').style.display = 'none';
}