function ShowImage( width, height, title, picture ) 
{
  /* create the window */
	var newWindow = window.open("http://www.allichtreclame.nl/services/image.php?file=" + picture + "&title=" + title, "snapIn","toolbar=0, status=no, menubar=0, width=" + width + ", height=" + height + ", resizable=0, scrollbars=0");
  newWindow.focus();
}

function requestInfo() 
{
  /* create the window */
  user = "info";
  server = "allichtreclame.nl";
  address = user + "@" + server;  
  var reqWindow = window.open("mailto:" + address, "snapIn","toolbar=0, menubar=0, width=70, height=70, resizable=1, scrollbars=1");
  if ( reqWindow != null )
    reqWindow.close();
	//var reqWindow = window.open("http://www.allichtreclame.nl/services/requestinfo.php", "snapIn","toolbar=0, menubar=0, width=460, height=360, resizable=1, scrollbars=1");
	//reqWindow.focus();
}

function writeAddress(prefix)
{
  user = "info";
  server = "allichtreclame.nl";
  address = user + "@" + server;
  
  document.write( "<a href=\"mailto:" + address + "\">" + address + "</a>" );
}

