You must have a verified account to send a message to a user not on your friend list. To verify your account, please check your email and follow the directions listed.
Would you like to be resent this verification email?
Nachricht senden
Senden an:
Nachricht:
0 / Zeichen benutzt
Geschenk:
( Cr) von
( Cr) von
( Cr)
* Produkt ODER Musik als Geschenk auswählen
Produktgeschenk:
Geschenkpapier:
Hinweis: Geschenke können nur mit Credits bezahlt werden.
NEU!Zustellen:
Geschenkliste löschen: Um deine Geschenkartikel dauerhaft aus dem Geschenkmenü zu entfernen, klicke bitte hier.
var AboutPanel = document.getElementById("aboutme_panel");
if (AboutPanel == null) {
var msgTxt1 = document.createTextNode("This homepage has been marked as ");
var msgTxt2 = document.createTextNode("friends only");
var msgTxt3 = document.createTextNode(" by its owner.");
var msgBold = document.createElement("b");
msgBold.appendChild(msgTxt2);
var msgBox = document.createElement("p");
msgBox.appendChild(msgTxt1);
msgBox.appendChild(msgBold);
msgBox.appendChild(msgTxt3);
msgBox.setAttribute("style", "background: rgb(238, 238, 238); margin: 25px 0px 0px; padding: 10px; border: 1px solid rgb(153, 153, 153); border-image: none;");
var msgData = document.createElement("td");
msgData.setAttribute("colspan", "2");
msgData.appendChild(msgBox);
var msgRow = document.createElement("tr");
msgRow.appendChild(msgData);
var targetTable = document.getElementById("imvuTopNav");
targetTable.appendChild(msgRow);
}