
/*
function callAdvertising(url) {
    document.getElementById("title").innerHTML = "<h1 class=\"blink\">RADIONA(T)IONAL</h1>";
    
    // ADD DIV WITH IMAGE ELEMENT
    //var contentTEMP = document.getElementById("content").innerHTML;
    
    var advertisingDiv = document.createElement("div");
    var attributeId = document.createAttribute("id");
    attributeId.nodeValue = "advertising";
    advertisingDiv.setAttributeNode(attributeId);
    document.getElementById("project").appendChild(advertisingDiv);
    document.getElementById("advertising").innerHTML = "<img src=../includes/\""+url+"\" title=\"WERBUNG\" />";
    
    // ADD TIMER
    callTimer(0);
    // DELETE DIV WITH IMAGE ELEMENT
    //document.getElementById("title").innerHTML = "<h1>RADIONACIONAL</h1>";
}

function callTimer(seconds) {
    
    var max = 6;
    
    if (seconds < 6) {
        seconds++;
        // WRITE TIME
        // document.getElementById('timer').innerHTML = max-seconds;
        setTimeout("callTimer("+seconds+")",1000)
    } else {
        document.getElementById("title").innerHTML = "<h1>RADIONACIONAL</h1>";
        document.getElementById("project").removeChild(document.getElementById("advertising"));
    }
}
*/

function getMail(adresse, domain, text) {
	
	document.write('<a href=\"mailto:' + adresse + '@' + domain + '\">');
	if (text == null) {
		document.write(adresse + '@' + domain + '</a>');
	} else {
		document.write(text + '</a>');
	}
}

