// Title of popup window //
var title = "Mango-Inn Resort, Utila Honduras";

// Include JAVA Script popup function //
var picture = null;
var pics_num = null;
function popup(pics_num) {
	window.name = "main";
	var ss_pop = null;
	var s_width = screen.availWidth;
	var s_height = screen.availHeight;
	var x_width = 500;
	var y_height = 366;
	var total_width = ((s_width - x_width - 10) * .5);
	var total_height = ((s_height - y_height - 30) * .5);		
	picture = pictures[pics_num];	
	ss_popup = window.open('','ss_popup','menubar=0,toolbar=0,menubuttons=0,scrollable=0,scrollbars=0,resizeable=0,directories=0,status=0,width='+x_width+',height='+y_height+',left='+total_width+',top='+total_height);
	page_text = "<\!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">";
	page_text += "<html><head><title>"+ title +"</title><link rel=\"STYLESHEET\" type=\"text/css\" href=\"../style/default.css\"></head>";	
	page_text += "<body style=\"margin: 0px; padding: 0px; overflow: hidden;\">";	
	page_text += "<a href=\"javascript:window.close();\" title=\"Click image to close\">"+ picture +"</a>";		
	page_text += "<div class=\"shrink_btn\"><a href=\"javascript:window.close();\" title=\"Click image to close\"><img src=\"../images/enlarge_btn2a.gif\" width=\"20\" height=\"20\" alt=\"Close Window\"></a></div>";	
	page_text += "</body></html>";
	ss_popup.document.write (page_text);
	ss_popup.document.close();
}

