/*
function showTime()	
{
	var now = new Date();
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var seconds = now.getSeconds();
	
	if (seconds < 10)
	seconds = "0" + seconds;
	if (minutes < 10)
	minutes = "0" + minutes;
	if (hours < 10)
	hours = "0" + hours;
	
	document.montre.orario.value = hours + ":" + minutes + ":" + seconds;
}

function showDate()	
{
	var now = new Date();
	var year = now.getYear();
	var month = now.getMonth()+1;
	var date = now.getDate();
	var day = now.getDay();
	
	switch (day)
	{
		case 0:
			day = "Dom"
			break;
		case 1:
			day = "Lun"
			break;
		case 2:
			day = "Mar"
			break;
		case 3:
			day = "Mer"
			break;
		case 4:
			day = "Gio"
			break;
		case 5:
			day = "Ven"
			break;
		case 6:
			day = "Sab"
			break;
	}
				
	switch (month)
	{
		case 1:
			month = "Gen"
			break;
		case 2:
			month = "Feb"
			break;
		case 3:
			month = "Mar"
			break;
		case 4:
			month = "Apr"
			break;
		case 5:
			month = "Mag"
			break;
		case 6:
			month = "Giu"
			break;
		case 7:
			month = "Lug"
			break;
		case 8:
			month = "Ago"
			break;
		case 9:
			month = "Set"
			break;
		case 10:
			month = "Ott"
			break;
		case 11:
			month = "Nov"
			break;
		case 12:
			month = "Dic"
			break;
		}
	document.montre.datario.value = day + " " + date + " " + month;
}
*/

function loadPage(strPath)
{
	if (strPath != "empty")
		location.href = strPath;
}

function showMsg(strMsg)	
{
	if (strMsg != "")
	{
		alert(strMsg);
	}
	return true;
}

function resetSiteWideDropDowns()	
{
	document.montre.info.selectedIndex = 0;
	document.montre.quick.selectedIndex = 0;
}

function resetPortalDropDowns()	
{
	document.montre.info.selectedIndex = 0;
	document.montre.quick.selectedIndex = 0;
	document.topboxes.ddLab.selectedIndex = 0;
	document.topboxes.ddNet.selectedIndex = 0;
	document.topboxes.ddQuick.selectedIndex = 0;
}
	
	