/*             Copyright             */
/* Esposito D Onofrio Nunzio (NedEX) */
/*           ned_ex@msn.com          */

function aggDownload(titolo,descrizione,dwnlink,nim){
document.write('<tr>'); 
aggDettaglio(titolo); 
aggDettaglio(descrizione); 
aggTasto(dwnlink,nim); 
document.write('<\/tr>'); 
} 
 
function aggTitolo(){ 
document.write('<tr>'); 
if (linguaggio == "it"){
	aggDettaglioT("<b>Nome</b>");
	aggDettaglioT("<b>Descrizione</b>");
	aggDettaglioT("<b>Scarica</b>");
	}
if (linguaggio == "en"){
	aggDettaglioT("<b>Title</b>"); 
	aggDettaglioT("<b>Description</b>"); 
	aggDettaglioT("<b>Download</b>"); 
}
if (linguaggio == "de"){
	aggDettaglioT("<b>Titel</b>"); 
	aggDettaglioT("<b>Beschreibung</b>"); 
	aggDettaglioT("<b>Download</b>"); 
}
document.write('<\/tr>'); 
} 

function aggTasto(dwnlinkz,nm){ 
document.write('<td class="ww">');
document.write('<form action="'+dwnlinkz+'" target="_blank"><input type="submit" class="codebuttons" value=" Download "><\/form>');
document.write('<\/td>'); 
} 
 

// ==================== INIZIO SCRITTURA DOWNLOAD ====================


// Titolo, Descrizione, Link, NomePulsante
doUp("Downloads");
aggTitolo(); 
if (linguaggio == "it"){
	aggDownload("ZipGenius 6.0.3.1140","Programma per decomprimere gli archivi","http://web.rossoalice.it/zipgenius/zg6/zg603std.exe","zpg");
	aggDownload("Avatar","Gli avatar di Killzone: Liberation","./dati/avatars.rar","avt"); 
	aggDownload("Killzone completato al 100%","Il salvataggio di Killzone al 100% by Dux","./dati/savedata_finito.rar","sav"); 
	aggDownload("Screenshot Plugin 1.2", "Plugin per fare foto e video","./dati/ScreenshotPlugin12.zip","plg");
	aggDownload("Speedy ScreenShot Plugin 0.30", "Plugin pił rapido nella creazione di Screenshoots, e in formato PNG", ".dati/SSPSPv0.30.rar","ssp");
}
if (linguaggio == "en"){
	aggDownload("ZipGenius 6.0.3.1140","The software to decompress the archives","http://web.rossoalice.it/zipgenius/zg6/zg603std.exe","zpg");
	aggDownload("Avatars","The avatars of Killzone: Liberation","./dati/avatars.rar","avt"); 
	aggDownload("Killzone Savedata 100% Completed","The Killzone: Liberation's 100% Savedata by Dux","./dati/savedata_finito.rar","sav"); 
	aggDownload("Screenshot Plugin 1.2", "Plugin to make photos and videos","./dati/ScreenshotPlugin12.zip","plg");
	aggDownload("Speedy ScreenShot Plugin 0.30", "Faster plugin to make screenshots, in PNG format", ".dati/SSPSPv0.30.rar","ssp");
}
if (linguaggio == "de"){
	aggDownload("ZipGenius 6.0.3.1140","Das Programm zu entpacken der Dateien","http://web.rossoalice.it/zipgenius/zg6/zg603std.exe","zpg");
	aggDownload("Bilder","Die Bilder von Killzone: Liberation","./dati/avatars.rar","avt"); 
	aggDownload("Killzone Savegame 100% Fertig","Killzone Speichertand 100% Fertig von DNA Dux","./dati/savedata_finito.rar","sav"); 
	aggDownload("Screenshot Plugin 1.2", "Software um photos und videos zu machen","./dati/ScreenshotPlugin12.zip","plg");
	aggDownload("Speedy ScreenShot Plugin 0.30", "Faster plugin to make screenshots, in PNG format", ".dati/SSPSPv0.30.rar","ssp");
}
doDw();