function isIE() {
	return (navigator.appName == "Microsoft Internet Explorer");
}



// Pop up Photo
 function OpenNewWindow(photo,title,width,height)
	{
	var w = width + 30;
	var h = height + 55;
	var windowparameters = 'resizable=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,width=' + w + ',height=' + h + ',left=0,top=0';
	NewWindow=window.open("","NewOne", windowparameters);
	NewWindow.document.write ("<HTML><HEAD><TITLE>");
	NewWindow.document.write ("NEGROPONTE RESORT ERETRIA");
	NewWindow.document.write ("</TITLE>\r\n");
	NewWindow.document.write ("<meta http-equiv=\"Content-Type\" content=\"text/html;charset=iso-8859-7\">\r\n");
	NewWindow.document.write ("</HEAD>\r\n");
	NewWindow.document.write ("<BODY leftmargin=15 topmargin=15 rightmargin=15 bottommargin=10 marginwidth=15 STYLE='background-color:#7B9ED6;'>\r\n");

	NewWindow.document.write ("<img src='");
	NewWindow.document.write (photo);
	NewWindow.document.write ("' border=0 alt='" + title + "' style='border: 2 solid white;'>");
	NewWindow.document.write ("<BR>\r\n<IMG SRC='images/d.gif' WIDTH=1 HEIGHT=10 BORDER=0><BR>\r\n");
	NewWindow.document.write ("<table border=0 cellpadding=0 cellspacing=0 width='100%'>\r\n");
	NewWindow.document.write ("<tr>\r\n");
	NewWindow.document.write ("<td><IMG SRC='images/d.gif' BORDER=0></td>\r\n");
	NewWindow.document.write ("<td width='100%' align='center'><FONT FACE='Arial' SIZE=2 COLOR='#ffffff'><b>" + title + "</b></FONT></td>\r\n");
	NewWindow.document.write ("<td><IMG SRC='images/d.gif' BORDER=0></A></td>\r\n");
	NewWindow.document.write ("</tr>\r\n");
	NewWindow.document.write ("</table>\r\n");
	NewWindow.document.write ("</BODY></HTML>");
	NewWindow.document.close();
	NewWindow.focus();
	NewWindow.setTimeout("self.close()",8000);
	return false;
}