function openwindow(src,height,width)
{
	if (document.images)
	{
		picture=window.open("","Fotos","fullscreen=no,menubar=no,location=no,resizable=no,scrollbars=no,status=no,toolbar=no,height=" + height + ",width=" + width);
	}
	else
	{
		picture=window.open("","Fotos","fullscreen=no,menubar=no,location=no,resizable=no,scrollbars=no,status=no,toolbar=no,height=" + (height-30) + ",width=" + width);
	}
	picture.document.open();
	picture.document.write("<HTML>");
	picture.document.write("<HEAD>");
	picture.document.write("<TITLE>The Owlhouse - For 1 year a unique house rental in tropical green Costa Rica...</TITLE>");
	picture.document.write("</HEAD>");
	picture.document.write("<BODY background=");
	picture.document.write(src);
	picture.document.write(" LEFTMARGIN=0 RIGHTMARGIN=0 TOPMARGIN=0 BOTTOMMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 LINK=#FFFFFF VLINK=#FFFFFF ALINK=#FFFFFF>");
	picture.document.write("<TABLE WIDTH=100% HEIGHT=100% BORDER=0 cellpadding=0 cellspacing=0><TR valign=BOTTOM><TD align=right><A HREF='Javascript:window.close();'><font face=arial size=2 color=white><b>close</b></font></a></td></TR></table>");
	picture.document.write("</BODY>");
	picture.document.write("</HTML>");
	picture.document.close();
}

