Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
785 lines (687 sloc)
20.4 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Start index.nhtml - Version 3.7.2 --> | |
| <html> | |
| <head> | |
| <title>Questo sito è stato hackato !!! hahahahahah !!!</title> | |
| <META NAME="keywords" CONTENT=""> | |
| <META NAME="description" CONTENT=""> | |
| </head> | |
| <!-- Start vheader.nhtml - Version 3.7.2 --> | |
| <SCRIPT><!-- | |
| var gErrorUrl=""; | |
| function OpenHelpErrorHandler() | |
| { | |
| if (gErrorUrl != "") | |
| { | |
| location.href = gErrorUrl; | |
| return true; | |
| } | |
| else | |
| { | |
| return false; | |
| } | |
| } | |
| function OpenHelp(url) | |
| { | |
| /* special case for folders */ | |
| // this special case was removed as path was replaced with .Sitemap.Type in vheader. | |
| /* only if /nss-folder/ was found before the query string */ | |
| window.onerror = OpenHelpErrorHandler; | |
| gErrorUrl = url; | |
| var hWnd = window.open(url, "NVOHelp", "menubar=yes,toolbar=yes,width=632,height=400,resizable=yes,scrollbars=yes"); | |
| if (!hWnd.opener) hWnd.opener = self; | |
| if (hWnd.focus != null) hWnd.focus(); | |
| gErrorUrl = ""; | |
| } | |
| function FindElement(elementName) | |
| { | |
| var i = 0; | |
| for (i = 0; i < document.nvoForm.elements.length; i++) | |
| { | |
| if (document.nvoForm.elements[i].name == elementName) | |
| { | |
| return document.nvoForm.elements[i]; | |
| } | |
| } | |
| return null; | |
| } | |
| function RemoveFocusAll() | |
| { | |
| var vers = navigator.appVersion; | |
| if (vers.indexOf("Mac") != -1 && vers.indexOf("IE") != -1) | |
| { | |
| var i = 0; | |
| for (i = document.nvoForm.elements.length - 1; i >= 0 ; i--) | |
| { | |
| if (document.nvoForm.elements[i].type == "text" || document.nvoForm.elements[i].type == "textarea") | |
| { | |
| document.nvoForm.elements[i].blur(); | |
| } | |
| } | |
| } | |
| } | |
| /* this is the action string that is used to save the standard items on a page */ | |
| function GetStdAction() | |
| { | |
| var hidePage = (document.nvoForm.hidePage && document.nvoForm.hidePage.checked) ? "ON" : "OFF"; | |
| if (hidePage == "ON") /* if hidden page, go back home */ | |
| { | |
| document.nvoForm.NVORedirect.value = document.nvoForm.hostAddressForHiddenPage.value; | |
| } | |
| return "Set(.Sitemap.Name." + document.nvoForm.ObjectUID.value + "=" + escape(document.nvoForm.PageName.value) | |
| + "&.Sitemap.Title." + document.nvoForm.ObjectUID.value + "=" + escape(document.nvoForm.PageTitle.value) | |
| + "&.Sitemap.Hide." + document.nvoForm.ObjectUID.value + "=" + hidePage +");"; | |
| } | |
| var gSaveAndGoURL = ""; | |
| var gChanged = false; | |
| function DoGoto(url) | |
| { | |
| RemoveFocusAll(); | |
| if (gChanged || "" == "") | |
| { | |
| gSaveAndGoURL = url; | |
| DoSave(); | |
| } | |
| else | |
| { | |
| location.href = ReplaceString(url, "*", ""); | |
| } | |
| } | |
| /* save the form data and goto the specified url */ | |
| function SaveAndGo(url) | |
| { | |
| RemoveFocusAll(); | |
| if (gChanged) | |
| { | |
| gSaveAndGoURL = url; | |
| DoSave(); | |
| } | |
| else | |
| { | |
| location.href = url; | |
| } | |
| } | |
| function Changed(url) | |
| { | |
| gChanged = true; | |
| } | |
| function IsNetscape() | |
| { | |
| return (navigator.appName.substring(0, 8) == "Netscape"); | |
| } | |
| function WarnIfUsingOldBrowser() | |
| { | |
| if (parseInt(navigator.appVersion) < 4) | |
| { | |
| if (IsNetscape()) | |
| alert("Per modificare il sito Web è necessario utilizzare una versione più recente di Netscape Communicator. Per scaricare l'ultima versione del browser, visitare il sito Netscape all'indirizzo www.netscape.com. In caso contrario, il sito potrebbe non funzionare correttamente."); | |
| else | |
| alert("Per modificare il sito Web è necessario utilizzare una versione più recente di Internet Explorer. Per scaricare l'ultima versione del browser, visitare il sito Microsoft all'indirizzo www.microsoft.com. In caso contrario, il sito potrebbe non funzionare correttamente."); | |
| } | |
| } | |
| function NormalizeObjectName(name) | |
| { | |
| var newName = ""; | |
| for (i = 0; i < name.length; i++) | |
| { | |
| charCode = name.charCodeAt(i); | |
| if (charCode < 0) | |
| charCode += 256; | |
| /* Remove the chars \ / : * ? \" < > | ' */ | |
| /* and handle only ascii values between 32 and 128 */ | |
| if (charCode == 38 /* & */ | |
| || charCode == 47 /* / */ | |
| || charCode == 92 /* \ */ | |
| || charCode == 58 /* : */ | |
| || charCode == 42 /* * */ | |
| || charCode == 63 /* ? */ | |
| || charCode == 34 /* " */ | |
| || charCode == 60 /* < */ | |
| || charCode == 62 /* > */ | |
| || charCode == 124 /* | */ | |
| || charCode == 39) /* ' */ | |
| { | |
| /* do nothing */ | |
| } | |
| else if (charCode > 32 && charCode < 128) | |
| newName += name.substr(i, 1); | |
| } | |
| /* if we eliminated all chars, name the object "page" */ | |
| if (newName == "") | |
| newName = "page"; | |
| return newName; | |
| } /* NormalizeObjectName */ | |
| function RemoveAmpersand(name) | |
| { | |
| var newName = ""; | |
| for (i = 0; i < name.length; i++) | |
| { | |
| charCode = name.charCodeAt(i); | |
| if (charCode < 0) | |
| charCode += 256; | |
| if (charCode == 38) /* & */ | |
| { | |
| /* do nothing */ | |
| } | |
| else | |
| newName += name.substr(i, 1); | |
| } | |
| /* if we eliminated all chars, name the object "page" */ | |
| if (newName == "") | |
| newName = "page"; | |
| return newName; | |
| } /* NormalizeObjectName */ | |
| function DoButton(buttonAction) | |
| { | |
| if ((document.nvoForm.PageName) && (document.nvoForm.PageName.value == "")) | |
| { | |
| alert("Il nome della pagina è obbligatorio e non può essere omesso. Immettere un nome valido."); | |
| document.nvoForm.PageName.focus(); | |
| document.nvoForm.PageName.select(); | |
| location.href = "#pagename"; | |
| return; | |
| } | |
| if (gSaveAndGoURL != "") | |
| { | |
| document.nvoForm.NVORedirect.value = gSaveAndGoURL; | |
| } | |
| document.nvoForm.NVOAction.value = buttonAction; | |
| document.nvoForm.submit(); | |
| } | |
| function DoMoveItem(where, uid) | |
| { | |
| DoButton("MoveRecord(List=Sitemap&uid=" + uid + "&Where=" + where + ")"); | |
| } | |
| window.errorLoadingApplet = false; | |
| /* This script is called when the user clicks on the client link before */ | |
| /* the browser has had time to launch the applet */ | |
| function AppletErrorHandler() | |
| { | |
| alert("Attendere la fine del caricamento della pagina e riprovare."); | |
| return true; | |
| } | |
| /* This javascript is used launch a helper app */ | |
| function StartHelper(host, service, hostAddress, extra) | |
| { | |
| if (navigator.appVersion.indexOf("Macintosh") != -1) | |
| { | |
| if (navigator.mimeTypes) | |
| { | |
| mimetype = navigator.mimeTypes["application/netopia"]; | |
| if (mimetype && mimetype.enabledPlugin) | |
| { | |
| location.href = "http://" + hostAddress + "/pages/common/" + host + ".nhtml?service=" + service + "&back=" + escape(location.href) + "&extra=" + escape(extra); | |
| } | |
| else | |
| { | |
| alert("Per utilizzare questa funzione è necessario utilizzare l'applicazione GRATUITA Visitor Software. Scaricare e installare l'applicazione."); | |
| location.href = "http://" + hostAddress + "/bin/download.nhtml"; | |
| } | |
| } /* if we can check for mimeTypes supported */ | |
| else | |
| { | |
| location.href = "http://" + hostAddress + "/pages/common/" + host + ".nhtml?service=" + service + "&back=" + escape(location.href) + "&extra=" + escape(extra); | |
| } /* else go to plugin start page */ | |
| } | |
| else | |
| { | |
| if (window.errorLoadingApplet) | |
| { | |
| alert("Per utilizzare questa funzione è necessario attivare Java sul browser."); | |
| } | |
| else | |
| { | |
| window.onerror = AppletErrorHandler; | |
| installed = document.cc.isClassInstalled("com.netopia.ns.version.client.VisitorClient"); | |
| if (installed) | |
| { | |
| location.href = "http://" + hostAddress + "/pages/common/" + host + ".netopia?service=" + service + "&extra=" + escape(extra); | |
| } | |
| else | |
| { | |
| alert("Per utilizzare questa funzione è necessario utilizzare l'applicazione GRATUITA Visitor Software. Scaricare e installare l'applicazione."); | |
| location.href = "http://" + hostAddress + "/bin/download.nhtml"; | |
| } | |
| } | |
| } /* else it's Windows */ | |
| } | |
| /* pulls a parameter out of a comma delimeted string */ | |
| /* For example, given the string "a,b,c", passing */ | |
| /* index 0 would return "a", 1 would return "b", etc... */ | |
| function GetField(rec, fieldindex) | |
| { | |
| var i; | |
| var istart = 0; | |
| var iend = 0; | |
| for (i = 0; i < fieldindex; i++) | |
| { | |
| istart = rec.indexOf(",", istart) + 1; | |
| } | |
| iend = rec.indexOf(",", istart); | |
| if (iend < 0) | |
| { | |
| iend = rec.length; | |
| } | |
| var temp = rec.substring(istart, iend); | |
| return temp; | |
| } | |
| function StdDelete(singularname, pluralname, profile, list, stdeditpage) | |
| { | |
| var action = ""; | |
| var count = 0; | |
| var m1, m2; | |
| if (stdeditpage) | |
| action = GetStdAction(); | |
| action = "UseProfile(Name=" + profile + ");Save()"; | |
| for (i = 0; i < document.nvoForm.elements.length; i++) | |
| { | |
| el = document.nvoForm.elements[i]; | |
| if (el.name == "cb" && el.checked) | |
| { | |
| uid = GetField(el.value, 0); | |
| action +=";Delete(List=" + list + "&UID=" + uid + ")"; | |
| count++; | |
| } | |
| } | |
| if (count > 1) | |
| { | |
| m1 = "Eliminare ^^^count^^^ ^^^pluralname^^^?"; | |
| m2 = ReplaceString(m1, "^^^count^^^", count); | |
| if (confirm(ReplaceString(m2, "^^^pluralname^^^", pluralname))) | |
| { | |
| DoButton(action); | |
| } | |
| } | |
| else | |
| { | |
| if (count == 1) | |
| { | |
| m1 = "Eliminare ^^^count^^^ ^^^singularname^^^?"; | |
| m2 = ReplaceString(m1, "^^^count^^^", count); | |
| if (confirm(ReplaceString(m2, "^^^singularname^^^", singularname))) | |
| { | |
| DoButton(action); | |
| } | |
| } | |
| else | |
| { | |
| m1 = "Utilizzare le caselle di controllo per selezionare uno o più elementi, quindi fare clic su Elimina"; | |
| alert(ReplaceString(m1, "^^^pluralname^^^", pluralname)); | |
| } | |
| } | |
| } | |
| function StdMove(name, moveurl, helpurl, profile, list, field, doneurl, query, uid, extraretparms) | |
| { | |
| var startuid = ""; | |
| var enduid = ""; | |
| if (!uid) | |
| uid = ""; | |
| for (i = 0; i < document.nvoForm.elements.length; i++) | |
| { | |
| el = document.nvoForm.elements[i]; | |
| if (el.name == "cb" && el.checked) | |
| { | |
| if (startuid.length == 0) | |
| startuid = GetField(el.value, 0); | |
| else | |
| enduid = GetField(el.value, 0); | |
| } | |
| } | |
| if (startuid.length > 0) | |
| { | |
| if (enduid.length == 0) | |
| enduid = startuid; | |
| action = moveurl + "?startuid=" + startuid + "&enduid=" + enduid + "&profile=" + profile + "&list=" + list + "&field=" + field + | |
| "&name=" + escape(name) + "&doneurl=" + doneurl + "&uid=" + uid + "&helpurl=" + helpurl + query; | |
| if (extraretparms) | |
| action += "&extraretparms=" + extraretparms; | |
| SaveAndGo(action); | |
| } | |
| else | |
| { | |
| var message = "Utilizzare le caselle di controllo per selezionare uno o più elementi, quindi fare clic su Sposta"; | |
| alert(ReplaceString(message, "^^^name^^^", name)); | |
| } | |
| } | |
| function StdEdit(name, editurl, editlisturl, query) | |
| { | |
| var uidlist = ","; | |
| var count = 0; | |
| for (i = 0; i < document.nvoForm.elements.length; i++) | |
| { | |
| el = document.nvoForm.elements[i]; | |
| if (el.name == "cb" && el.checked) | |
| { | |
| uid = GetField(el.value, 0); | |
| uidlist += uid + ","; | |
| count++; | |
| } | |
| } | |
| if (count > 0) | |
| { | |
| if (count == 1) | |
| SaveAndGo(editurl + "?uid=" + uid + query); | |
| else | |
| { | |
| if (editlisturl == "") | |
| alert("Selezionare un solo elemento per la modifica.") | |
| else | |
| SaveAndGo(editlisturl + "?count=" + count + "&uidlist=" + uidlist + query); | |
| } | |
| } | |
| else | |
| { | |
| var message = "Utilizzare le caselle di controllo per selezionare uno o più elementi, quindi fare clic su Modifica"; | |
| alert(ReplaceString(message, "^^^name^^^", name)); | |
| } | |
| } | |
| function ReplaceString(org, match, replace) | |
| { | |
| var dst = ""; | |
| var starti = 0; | |
| var endi = 0; | |
| while ((endi = org.indexOf(match, starti)) >= 0) | |
| { | |
| dst += org.substring(starti, endi) + replace; | |
| starti = endi + match.length; | |
| } | |
| dst += org.substring(starti, org.length); | |
| return dst; | |
| } | |
| function IsTrue(value) | |
| { | |
| upperCaseValue = value.toUpperCase(); | |
| return ((upperCaseValue == "") | |
| || (upperCaseValue != "NO" | |
| && upperCaseValue != "FALSE" | |
| && upperCaseValue != "OFF" | |
| && upperCaseValue != "0")); | |
| } | |
| function DoSelectAll() | |
| { | |
| for (var i=0; i < document.nvoForm.elements.length; i++) | |
| { | |
| el = document.nvoForm.elements[i]; | |
| if (el.name == "cb") | |
| el.checked = (document.nvoForm.allSelected.value == "check"); | |
| } | |
| /* toggle values */ | |
| if (document.nvoForm.allSelected.value == "check") | |
| document.nvoForm.allSelected.value = "uncheck"; | |
| else | |
| document.nvoForm.allSelected.value = "check"; | |
| } | |
| function setStatusBar(msg) { | |
| window.status = msg; | |
| return true | |
| } | |
| function FindSelectedElement(name, buttonName, action, messageNone, messageTooMany) | |
| { | |
| sel = null; | |
| numsel = 0; | |
| for (i = 0; i < document.nvoForm.elements.length; i++) | |
| { | |
| el = document.nvoForm.elements[i]; | |
| if (el.name == name && el.checked) | |
| { | |
| numsel++; | |
| sel = el; | |
| } | |
| } | |
| if (numsel == 0) | |
| { | |
| alert(ReplaceString(messageNone, "^^^buttonName^^^", buttonName)); | |
| } | |
| else if (numsel > 1) | |
| { | |
| alert(ReplaceString(messageTooMany, "^^^action^^^", action)); | |
| sel = null; | |
| } | |
| return sel; | |
| } | |
| function CheckURL(urlElement) | |
| { | |
| if (urlElement.value.length > 0 && urlElement.value.indexOf("://") == -1) | |
| { | |
| urlElement.value = "http://" + urlElement.value | |
| } | |
| urlElement.value = ReplaceString(urlElement.value, " ", "%20"); | |
| Changed(); | |
| } | |
| //--></SCRIPT> | |
| <!-- Start incsettingsversion.nhtml - Version 3.7.2 --> | |
| <!-- End incsettingsversion.nhtml - Version 3.7.2 --> | |
| <!-- Start incfcdefaults.nhtml - Version 3.7.2 --> | |
| <!-- End incfcdefaults.nhtml - Version 3.7.2 --> | |
| <body bgcolor="#ffffff" BACKGROUND="netgsa/stock/sidebarbg/Dark_Blue.gif" | |
| link="#000000" | |
| vlink="#000000" | |
| > | |
| <table border=0 cellpadding=0 width=625 cellspacing=0> | |
| <tr> | |
| <td colspan=3 width=625> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="625" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td width=140 valign=top> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="10" BORDER="0"><br> | |
| <!-- Side-bar nav calls --> | |
| <table cellpadding=0 cellspacing=0 border=0 width=130> | |
| <tr> | |
| <td colspan=2> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="130" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td colspan=2> | |
| <br> | |
| <font face="arial,helvetica" size="2" COLOR="#ffffff"> | |
| <b>Pagine di presentazione</b> | |
| </font> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td colspan=2 width=140 > | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="140" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td width=25 valign=top align=right> | |
| <a href="netgsa/door/index.html"><IMG SRC="netgsa/pages/apps/door/app.gif" WIDTH="25" HEIGHT="20" BORDER="0"></a><br> | |
| </td> | |
| <td width=105 valign=top> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> | |
| <a href="netgsa/door/index.html"> | |
| <font face="arial,helvetica" size="1" COLOR="#ffffff"> | |
| Questo sito è stato hackato !!! Hahahahaha !!! | |
| </font> | |
| </a> | |
| </td> | |
| </tr> | |
| </table> | |
| <br> | |
| <br> | |
| <!-- end Side-bar nav calls --> | |
| </td> | |
| <td width=3 > | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="3" HEIGHT="250" BORDER="0"><br> | |
| </td> | |
| <td width="483" valign=top> | |
| <!-- Three column table for: left gutter, content, right gutter --> | |
| <table width="483" border="0" cellpadding="0" cellspacing="0"> | |
| <tr> | |
| <!-- left gutter --> | |
| <td colspan=3> | |
| <table border=0 cellpadding=0 width=100% cellspacing="0"> | |
| <tr> | |
| <td valign=bottom> | |
| <table border="0" cellpadding="0" cellspacing="0"> | |
| <tr> | |
| </tr> | |
| </table> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="3" BORDER="0"><br> | |
| <FONT FACE="arial,helvetica" SIZE="4" COLOR="#000000"> | |
| <b>Questo sito è stato hackato !!! Hahahahaha !!!</b><br> | |
| </FONT> | |
| </td> | |
| <td align=right> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="3" BORDER="0"><br> | |
| <font face="arial,helvetica" SIZE="1" COLOR="#000000"> | |
| <br> | |
| <br> | |
| </font> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td colspan=3 bgcolor=#000000> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" width="1" HEIGHT="2" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| <tr> | |
| <!-- left gutter --> | |
| <td width=17> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" width="17" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| <td> | |
| <img src="netgsa/pages/images/trans_pix.gif" width="456" HEIGHT="1" BORDER="0"><br> | |
| <!-- body --> | |
| <font face="arial,helvetica" color="#000000" size="2"> | |
| <br> | |
| <!-- Start incbanner.nhtml - Version 3.7.2 --> | |
| <!-- End incbanner.nhtml - Version 3.7.2 --> | |
| <!-- End vheader.nhtml - Version 3.7.2 --> | |
| <NOSCRIPT> | |
| Sito di <BR><BR> | |
| <B>Poiché questa pagina utilizza JavaScript, è necessario utilizzare un browser come Netscape Navigator™ 2.0 o versione successiva oppure Microsoft® Internet Explorer™ 3.02 o versione successiva, che supportano JavaScript. Se JavaScript non è abilitato nel browser, è necessario attivarlo per utilizzare questo sito Web.</B><P><P> | |
| </NOSCRIPT> | |
| <table width="456" BORDER="0" CELLPADDING="0" CELLSPACING="0"> | |
| <tr> | |
| <!-- begin layout 2 --> | |
| <td VALIGN="TOP" width="456"> | |
| <img SRC="netgsa/pages/images/trans_pix.gif" width="456" HEIGHT="1" BORDER="0"><br> | |
| <dl> | |
| <font face="arial,helvetica" SIZE="4" COLOR="#000000"> | |
| <img SRC="netgsa/pages/images/trans_pix.gif" width="1" HEIGHT="10" BORDER="0"><br> | |
| <dt><B>Questo sito è stato hackato !!!</B> | |
| </font> | |
| <dd> | |
| <font face="arial,helvetica" SIZE="2" COLOR="#000000"> | |
| Fankulo !!! | |
| </font> | |
| </dl> | |
| </td> | |
| </tr> | |
| </table> | |
| </TD><TD></TD></TR><TR><TD COLSPAN=3 BGCOLOR="#000000"><IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD></TR><TR><TD></TD><TD VALIGN=TOP> | |
| <table width="456" BORDER="0" CELLPADDING="0" CELLSPACING="0"> | |
| <tr> | |
| <td VALIGN="TOP" width="456"> | |
| <img SRC="netgsa/pages/images/trans_pix.gif" width="456" HEIGHT="1" BORDER="0"><br> | |
| <dl> | |
| <font face="arial,helvetica" SIZE="4" COLOR="#000000"> | |
| <img SRC="netgsa/pages/images/trans_pix.gif" width="1" HEIGHT="10" BORDER="0"><br> | |
| <dt><B>Fankulo a GSASOFTWARE !!!</B> | |
| </font> | |
| <DD> | |
| <font face="arial,helvetica" SIZE="2" COLOR="#000000"> | |
| Vai a farti fottere !!! | |
| Non rompere più le palle alla gente se no ti capiterà di peggio | |
| Questo sito è stato hackato da: | |
| TheLostWolf e | |
| da Monica | |
| </font> | |
| </dl> | |
| </td> | |
| </tr> | |
| </table> | |
| </TD><TD></TD></TR><TR><TD COLSPAN=3 BGCOLOR="#000000"><IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD></TR><TR><TD></TD><TD VALIGN=TOP> | |
| <table width="456" BORDER="0" CELLPADDING="0" CELLSPACING="0"> | |
| <tr> | |
| <td VALIGN="TOP" width="456"> | |
| <img SRC="netgsa/pages/images/trans_pix.gif" width="456" HEIGHT="1" BORDER="0"><br> | |
| <dl> | |
| <DD> | |
| <font face="arial,helvetica" SIZE="2" COLOR="#000000"> | |
| Bastaaaaaaaaaaaaaaaaaaaaaaaaaa !!! | |
| </font> | |
| </dl> | |
| </td> | |
| </tr> | |
| </table> | |
| </TD><TD></TD></TR><TR><TD COLSPAN=3 BGCOLOR="#000000"><IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD></TR><TR><TD></TD><TD VALIGN=TOP> | |
| <!-- Start links_outline.nhtml - Version 3.7.2 --> | |
| <!-- End links_outline.nhtml - Version 3.7.2 --> | |
| <!-- Start vfooter.nhtml - Version 3.7.2 --> | |
| <!-- start: vfooter.nhtml --> | |
| <br> | |
| </font> | |
| </td> | |
| <!-- right gutter --> | |
| <td align="right" WIDTH="10"> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td></td> | |
| <td></td> | |
| <td bgcolor="#000000"> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| </table> | |
| <table cellpadding=0 cellspacing=0 border=0 width=625> | |
| <tr> | |
| <td width=147 rowspan=2> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="148" HEIGHT="1" BORDER="0"><br> | |
| </td> | |
| <td width=480> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="479" HEIGHT="2" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| <tr> | |
| <td align=center> | |
| <br> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="5" BORDER="0"><br> | |
| <FONT face="arial,helvetica" SIZE="2" COLOR="#000000"> | |
| </FONT> | |
| <br> | |
| <IMG SRC="netgsa/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="5" BORDER="0"><br> | |
| </td> | |
| </tr> | |
| </table> | |
| <!-- Start incfooter.nhtml - Version 3.7.2 --> | |
| <SCRIPT><!-- | |
| function GetSigninURL() | |
| { | |
| var partnerURL = "/pages/common/signin.nhtml"; | |
| if (partnerURL.charAt(0) == "/") | |
| partnerURL = "/netgsa/pages/common/signin.nhtml"; | |
| location.href = partnerURL; | |
| } | |
| //--></SCRIPT> | |
| <br> | |
| <table width=625 cellpadding=0 cellspacing=0 border=0> | |
| <tr> | |
| <td align=right valign=bottom width=90%> | |
| </td> | |
| <td align=center> | |
| <font size=2><a name="signin" href="javascript:GetSigninURL()" onMouseOver="return setStatusBar('Entra nel sito.')" onMouseOut="return setStatusBar('')"><img src="netgsa/pages/images/signin-ita.gif" alt="Registrazione" BORDER="0"><br></a> | |
| <a href="javascript:GetSigninURL()" onMouseOver="return setStatusBar('Entra nel sito.')" onMouseOut="return setStatusBar('')">Registrazione</a></font> | |
| </td> | |
| </tr> | |
| </table> | |
| <!-- Start incpartnerfooter.nhtml - Version 3.7.2 --> | |
| <!-- End incpartnerfooter.nhtml - Version 3.7.2 --> | |
| <!-- End incfooter.nhtml - Version 3.7.2 --> | |
| </font> | |
| </body> | |
| </html> | |
| <!-- End vfooter.nhtml - Version 3.7.2 --> | |
| <!-- End index.nhtml - Version 3.7.2 --> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |