// Open Info Window
/*
	Autor: Chirila Paul Ionut <ionut@around25.ro>
	This script is the property of S.C. Around25 S.R.L.
	All Rights Reserved
*/
var details=new Array('documents/calitate.html',
					  'documents/facturare.html',
					  'documents/dedicated-srv.html',
					  'documents/scripturi.html',
					  'documents/terms_of_use.html',
					  'documents/confidential.html'
					  );
var _height=800;
var _width=700;
var _parameters=',location=no,toolbar=no,status=no,resizable=no,scrollbars=yes';

function OpenDetailWindow(mess_id){
	var win=window.open(details[mess_id], 'GazduireOnline', 'width='+_width+',height='+_height+_parameters);
	win.focus();	
}