function openPage(url) {
//	parent.location.href = 	url
//	parent.openPage( url )
} 

function openNewPage(str) {
	var d = new Date()
	day = d.getDate();
	if (day<6) day = 6;
	if (day>24) day = 24;
	filename = str + day + '.htm';
	// parent.openPage( filename )
	// location.href = 'http://www.sportmediaset.it/olimpiadi2008/olympics'+filename	
	location.href = 'http://www.sportmediaset.it/olimpiadi2008/olympics'+filename
	// alert('-----')
	// setTimeout("location.href = 'http://www.sportmediaset.it/olimpiadi2008/olympics'+filename",100);
	
}


