function LoadGallery(pictureName,imageFile)
{
     
document.getElementById(pictureName).src = imageFile;

}


function showPh(pic) {
begin=window.open("","begin", "toolbar=yes,location=0,directories=0,status=0,menubar=0,scrollbars=yes,dependent=yes,resizable=0,width=700,height=560");
begin.moveTo(149,55);
begin.document.open();
if (begin){
begin.document.write('<HTML><HEAD>');
begin.document.write('<TITLE>Anna Pension - Corfu</TITLE>');
begin.document.write('</HEAD><BODY bgcolor="#26549a">');
begin.document.write('<center><table border="0" cellpadding="0" cellspacing="0"><IMG HSPACE=0 VSPACE=0 SRC=' + pic + '></td></tr></table></center>');
begin.document.write('<FORM><CENTER><INPUT TYPE=button class="buttonnb" VALUE="close window" onClick="window.close()"></CENTER></FORM>');
begin.document.write('</BODY></HTML>');
begin.document.close();
}
else {
alert("incompatible browser version! Please upgrage!");
}}

