function sndMsg()
{
	var a = "info"
	var d = "eurostampa.com"
	var f = a + "@" + d
    var p1 = "mai"
    var p2 = "lto:"
	location.href = p1 + p2 + f
}

function sndCV()
{
	var a = "job"
	var d = "eurostampa.com"
	var f = a + "@" + d
    var p1 = "mai"
    var p2 = "lto:"
	location.href = p1 + p2 + f
}

function showPrivacy()
{
    var popUp = window.open('privacy_disclaimer.html', 'privacy_disclaimer', 'width=460, height = 410, directories=no, location=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no')
    popUp.focus()
}

function showCredits()
{
    var popUp = window.open('credits.html', 'credits', 'width=460, height = 330, directories=no, location=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no')
    popUp.focus()
}

function showNewsItem(itemLink)
{
    var popUp = window.open(itemLink, 'news', 'width=620, height=500, directories=no, location=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no')
    popUp.focus()
}

var debugWindow

function debug(msg)
{
	if(debugWindow == undefined)
	{
		debugWindow = window.open('about:blank','debug', 'width=600, height=500, directories=no, location=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no')	
	}
	debugWindow.document.write(msg + "<br />")
}