function openPhotoWindow(url,name,width,height) {
        myWindow = window.open(url, name, 'width='+width+',height='+height+',left=50,top=50, scrollbars');
}

function againBots2(val) {
	document.getElementById("captchavalue").value=val;
	document.getElementById("captchaBots").style.display = "none";
}


function resizePhotoWindow() {
	var photo = document.getElementById('photo');
    var x = photo.width;
    var y = photo.height;
	if (x > 984) {
		x = 1024;
	} else {
		x += 40; 
	}
	if (y > 678) {
		y = 768;
	} else {
		y += 90; 
	}

    window.resizeTo(x, y);
    
    window.moveTo( ((screen.width/2) - (x/2)), 20);
}



$(document).ready(function(){

	if ($(".lightbox").length>0) {
		$(".lightbox").lightbox(
		//{fitToScreen: true}
		);
	}
	
});
