Shadowbox.loadSkin('classic', 'includes/src/skin');
Shadowbox.loadLanguage('en', 'includes/src/lang');
Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'], 'includes/src/player');

function $$(o){ return document.getElementById(o); }
function hidelog() {
	$$('version').style.visibility="hidden";
}
function resize() {
	var widthfrom = screen.width;
	if((widthfrom > 750) && (widthfrom < 900)) {
		document.getElementById('map').style.width="300px";

	}
	if((widthfrom > 1000) && (widthfrom < 1200)) {
		document.getElementById('map').style.width="370px";

	}
	if(widthfrom > 1210) {
		document.getElementById('map').style.width="450px";

	}
	document.getElementById('map').style.height="400px";
	load();
	Shadowbox.init();
}