function getTime(_time)
{
	var time = "";
	
	var td = new Date(_time*1000);
	
	time = td.getDate() + "-" + td.getMonth() + "-" + td.getFullYear() + ", " + td.getHours() + ":" + td.getMinutes();
	return time;
}

// OPEN / CLOSE POPUPS
function openPopup(_url)
{
	newwindow = window.open(_url,'popup','height=500,width=500,resizable=no,scrollbars=no,toolbar=no,status=no');

  	if (window.focus) { newwindow.focus()}
}

