function openExternal(){
	setMapDimensions();
}
window.onload = openExternal;
function setMapDimensions() {
  var container_height = jQuery(window).height();   
  jQuery('#photobig').css('height', container_height);  
  jQuery('#photobig').css('width', '100%');
}
