if (window == top) top.location.href = "index.html";

function show_pic(nompic,lg,ht)
{
	var minX = 0;
	var minY = 0;
	var scr_wid = screen.width;
	var scr_hei = screen.height; 

	if (scr_wid > 800)
	{
 	  minX = ((scr_wid - lg) / 2)
	}
	if (scr_hei > 600)
	{
 	  minY = ((scr_hei - ht) / 2)
	}
  
var Info=window.open('','','toolbar=no,location=no,directories=no,status=no,resizable=no,scrollbar=no,menubar=no,width='+lg+',height='+ht+',screenX='+minX+',screenY='+minY+',left='+minX+',top='+minY);
	Info.document.close();
	Info.document.open();
	Info.document.write("<HTML><HEAD><TITLE>Fred's Live Pictures</TITLE>");
	Info.document.write("</HEAD>");
	Info.document.write("<body leftmargin='0' topmargin='0'>");
	Info.document.write('<p><a href="Javascript:window.close()"><IMG SRC="livepix/'+nompic+'.jpg" border=0></a></p>');
	Info.document.write("</BODY></HTML>");
}

function contact(domain,email)
{
	document.location.href='mailto:fred'+ '1@' +domain;
}

