 // JavaScript Document
var pathToImages='./images/';

//image type .... the image....the detalii
function pop_image(title, anImage, details){
	var finalPath = pathToImages + '/' + anImage;
	var theImage = new Image();
	theImage.src = finalPath;
	var newWindowWidth  = window.screen.availWidth - 200 ;
	var newWindowHeight = window.screen.availHeight  - 350;
	
	newWindow = window.open("", "", "menubar,width=" + newWindowWidth + ", height=" + newWindowHeight + ",resizable=yes,scrollbars=yes,top=100,left=100");
	newWindow.document.writeln('<title>' + title + '...' + ' </title>');
	newWindow.document.writeln('<body bgcolor="#000000"  text="#FFFFFF" link="#999999" vlink="#999999" alink="#999999">');
	newWindow.document.writeln('<center>');
//	newWindow.document.writeln('<a href="javascript:window.close()"> <img src="../assets/images/inchide.gif" alt="Inchide"> </a>');

	newWindow.document.writeln('<p>');
	newWindow.document.writeln('<b>' + title  + '</b>');
	newWindow.document.writeln('</p>');	
	
	newWindow.document.writeln('<p>');
	newWindow.document.writeln('<img src=" ' + finalPath + '" border="1">');
	newWindow.document.writeln('</p>');
	
	newWindow.document.writeln('<p>');
	newWindow.document.writeln('<b>Detalii:' + details  + '</b>');
	newWindow.document.writeln('</p>');	


	newWindow.document.writeln('<a href="javascript:window.close()"> Inchide</a>');
	
		
	newWindow.document.writeln('</center>');
	newWindow.document.writeln('</body>');
	newWindow.document.close();
}