   /* Image array:
------------------------------------------------------------------------------------------------ */
var image_array= new Array();
	image_array[0]= new Image(438,600);
	image_array[0].src= "_images/news/advertJaro.jpg";

	image_array[1]= new Image(423,600);
	image_array[1].src= "_images/news/aankondiging.jpg";

	image_array[2]= new Image(424,600);
	image_array[2].src= "_images/news/artemistica2008.jpg";

	image_array[3]= new Image(709,510);
	image_array[3].src= "_images/news/digflyIRVINX09.jpg";

	image_array[4]= new Image(440,600);
	image_array[4].src= "_images/news/popupinvi09.jpg";

	image_array[5]= new Image(604,453);
	image_array[5].src= "_images/news/NGAGEMENT_A.jpg";

	image_array[6]= new Image(605,453);
	image_array[6].src= "./../_images/news/AnouncDEF-scaled.jpg";

	image_array[7]= new Image(407,600);
	image_array[7].src= "./../_images/news/invitatie12junillu.jpg";

   /* Open pop-up window:
------------------------------------------------------------------------------------------------ */

var image_window;

function window_check() {
	if (!image_window) {
		return false;
	}
	else if (image_window.closed) {
		return false;
	}
	else {
		return true;
	}
}

function popUpimage(index) {
	if (window_check()) {
		image_window.close();
	}

	var window_width= image_array[index].width;
	var window_height= image_array[index].height;
	var window_size= "width=" + window_width + ",height=" + window_height;

	image_window= window.open("","",window_size);
//	image_window= window.open(window_arguments);

	image_window.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />');
	image_window.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	image_window.document.writeln('<head>');
	image_window.document.writeln('<title>IRVINX.com<\/title>');
	image_window.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />');
	image_window.document.writeln('<link rel="stylesheet" href="./css/news.css" type="text/css" />');
	image_window.document.writeln('<\/head>');
	image_window.document.writeln('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
	image_window.document.writeln('<img id="news_image" src="'+ image_array[index].src +'" alt="" border="0" />');
	image_window.document.writeln('<\/body>');
	image_window.document.writeln('<\/html>');
	image_window.document.close();

	var url= image_array[index].src;
	var file_name= url.substring(url.lastIndexOf("/") + 1);
	//image_window.document.title= file_name;
	image_window.document.title= 'IRVINX.com';
}
