misc_online_today|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|misc_online_row|#*XMB TEMPLATE*#| 1231308135 |#*XMB TEMPLATE FILE*#|topicadmin_copy|#*XMB TEMPLATE*#|
:
:
|#*XMB TEMPLATE FILE*#|misc_feature_not_while_loggedin|#*XMB TEMPLATE*#|


|#*XMB TEMPLATE FILE*#|index_ticker|#*XMB TEMPLATE*#|
[ ]

|#*XMB TEMPLATE FILE*#|u2u_main_admin|#*XMB TEMPLATE*#|

- -
|#*XMB TEMPLATE FILE*#|u2u_folderlink_admin|#*XMB TEMPLATE*#| () |#*XMB TEMPLATE FILE*#|u2u_view_admin|#*XMB TEMPLATE*#|

|#*XMB TEMPLATE FILE*#|u2u_header_admin|#*XMB TEMPLATE*#| 's U2Us - WELLCOME IN NOOR FORUM..... - |#*XMB TEMPLATE FILE*#|u2u_row_admin|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|u2u_admin|#*XMB TEMPLATE*#|
- -

|#*XMB TEMPLATE FILE*#|misc_login_incorrectdetails|#*XMB TEMPLATE*#|


|#*XMB TEMPLATE FILE*#|misc_feature_notavailable|#*XMB TEMPLATE*#|


|#*XMB TEMPLATE FILE*#|error_nologinsession|#*XMB TEMPLATE*#|




|#*XMB TEMPLATE FILE*#|feature_statistics|#*XMB TEMPLATE*#|























|#*XMB TEMPLATE FILE*#|viewthread_post_msn|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|admintool_editprofile|#*XMB TEMPLATE*#|
-
 

-


-






   




|#*XMB TEMPLATE FILE*#|today|#*XMB TEMPLATE*#|
 
|#*XMB TEMPLATE FILE*#|today2|#*XMB TEMPLATE*#|
 
|#*XMB TEMPLATE FILE*#|footer|#*XMB TEMPLATE*#|



  &  






|#*XMB TEMPLATE FILE*#|header|#*XMB TEMPLATE*#| WELLCOME IN NOOR FORUM..... - defmode = "normalmode"; // default mode. either normalmode, advmode, or helpmode if (defmode == "advmode") { helpmode = false; normalmode = false; advmode = true; } else if (defmode == "helpmode") { helpmode = true; normalmode = false; advmode = false; } else { helpmode = false; normalmode = true; advmode = false; } function chmode(swtch){ if (swtch == 1){ advmode = false; normalmode = false; helpmode = true; alert("Help Mode\nClick on any of the formatting buttons for a description and instructions."); } else if (swtch == 0) { helpmode = false; normalmode = false; advmode = true; alert("Advanced Mode\nThe BB Code will be inserted without options as soon as you hit the button."); } else if (swtch == 2) { helpmode = false; advmode = false; normalmode = true; alert("Normal Mode\nPopups will bring you step by step through the process of inserting BB Code."); } } function AddText(NewCode) { if(document.all){ insertAtCaret(document.input.message,NewCode); setfocus(); }else{ document.input.message.value+=NewCode; setfocus(); } } function storeCaret (textEl){ if(textEl.createTextRange){ textEl.caretPos = document.selection.createRange().duplicate(); } } function insertAtCaret (textEl, text){ if (textEl.createTextRange && textEl.caretPos){ var caretPos = textEl.caretPos; caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text; }else{ textEl.value = text; } } function email() { if (helpmode) { alert("Email Tag\nTurns an email address into a mailto hyperlink.\nUsage: [email]someone@anywhere.com[/email]\nUsage: [email=someone@anywhere.com]link text[/email]"); } else if (advmode) { AddTxt="[email] [/email]"; AddText(AddTxt); } else { txt2=prompt("What name should be shown\nIf this field is empty the email address will be visible",""); if (txt2!=null) { txt=prompt("Please enter an email address.","name@domain.com"); if (txt!=null) { if (txt2=="") { AddTxt="[email]"+txt+"[/email]"; } else { AddTxt="[email="+txt+"]"+txt2+"[/email]"; } AddText(AddTxt); } } } } function chsize(size) { if (helpmode) { alert("0"); } else if (advmode) { AddTxt="[size="+size+"] [/size]"; AddText(AddTxt); } else { txt=prompt("Please enter the text to be size "+size,"Text"); if (txt!=null) { AddTxt="[size="+size+"]"+txt+"[/size]"; AddText(AddTxt); } } } function chfont(font) { if (helpmode){ alert("Font Tag\nSets the font face for the enclosed text.\nUsage: [font="+font+"]The font of this text is"); } else if (advmode) { AddTxt="[font="+font+"] [/font]"; AddText(AddTxt); } else { txt=prompt("Please enter the text to be in "+font,"Text"); if (txt!=null) { AddTxt="[font="+font+"]"+txt+"[/font]"; AddText(AddTxt); } } } function bold() { if (helpmode) { alert("Bold Tag\nMakes the enlosed text bold.\nUsage: [b]This is some bold text[/b]"); } else if (advmode) { AddTxt="[b] [/b]"; AddText(AddTxt); } else { txt=prompt("Please enter the text that should be bolded.","Text"); if (txt!=null) { AddTxt="[b]"+txt+"[/b]"; AddText(AddTxt); } } } function italicize() { if (helpmode) { alert("Italicize Tag\nMakes the enlosed text italicized.\nUsage: [i]This is some italicized text[/i]"); } else if (advmode) { AddTxt="[i] [/i]"; AddText(AddTxt); } else { txt=prompt("Please enter the text that should be italicized.","Text"); if (txt!=null) { AddTxt="[i]"+txt+"[/i]"; AddText(AddTxt); } } } function quote() { if (helpmode){ alert("Quote tag\nQuotes the enclosed text to reference something specific that someone has posted.\nUsage: [quote]This is a quote[/quote]"); } else if (advmode) { AddTxt="\r[quote]\r[/quote]"; AddText(AddTxt); } else { txt=prompt("Please enter the text you want quoted.","Text"); if(txt!=null) { AddTxt="\r[quote]\r"+txt+"\r[/quote]"; AddText(AddTxt); } } } function chcolor(color) { if (helpmode) { alert("Color Tag\nSets the text color. Any named color can be used.\nUsage: [color="+color+"]This is some "+color+" text[/color]"); } else if (advmode) { AddTxt="[color="+color+"] [/color]"; AddText(AddTxt); } else { txt=prompt("Please enter the text that should be "+color,"Text "+color,"Text"); if(txt!=null) { AddTxt="[color="+color+"]"+txt+"[/color]"; AddText(AddTxt); } } } function center() { if (helpmode) { alert("Centered tag\nCenters the enclosed text.\nUsage: [align=center]This text is centered[/align]"); } else if (advmode) { AddTxt="[align=center] [/align]"; AddText(AddTxt); } else { txt=prompt("Please enter the text that should be centered.","Text"); if (txt!=null) { AddTxt="\r[align=center]"+txt+"[/align]"; AddText(AddTxt); } } } function hyperlink() { if (helpmode) { alert("Hyperlink Tag\nTurns an url into a hyperlink.\nUsage: [url]http://www.anywhere.com[/url]\nUsage: [url=http://www.anywhere.com]link text[/url]"); } else if (advmode) { AddTxt="[url] [/url]"; AddText(AddTxt); } else { txt2=prompt("What name should be shown?\nIf this Field is blank the URL would be visible",""); if (txt2!=null) { txt=prompt("Please enter the url for the hyperlink.","http://"); if (txt!=null) { if (txt2=="") { AddTxt="[url]"+txt+"[/url]"; AddText(AddTxt); } else { AddTxt="[url="+txt+"]"+txt2+"[/url]"; AddText(AddTxt); } } } } } function image() { if (helpmode){ alert("Image Tag\nInserts an image into the post.\nUsage: [img]http:\www.anywhere.comimage.gif[/img]"); } else if (advmode) { AddTxt="[img] [/img]"; AddText(AddTxt); } else { txt=prompt("Please enter the URL to the image you wish to insert.","http://"); if(txt!=null) { AddTxt="\r[img]"+txt+"[/img]"; AddText(AddTxt); } } } function code() { if (helpmode) { alert("Code Tag\nBlockquotes the text you reference and preserves the formatting.\nUsefull for posting code.\nUsage: [code]This is formated text[/code]"); } else if (advmode) { AddTxt="\r[code]\r[/code]"; AddText(AddTxt); } else { txt=prompt("Please enter the text you wanted blockquoted.",""); if (txt!=null) { AddTxt="\r[code]"+txt+"[/code]"; AddText(AddTxt); } } } function list() { if (helpmode) { alert("List Tag\nBuilds a bulleted, numbered, or alphabetical list.\nUsage: [list]\n[*]item1\n[*]item2\n[*]item3\n[/list]"); } else if (advmode) { AddTxt="\r[list]\r[*]\r[*]\r[*]\r[/list]"; AddText(AddTxt); } else { txt=prompt("Please select your list type\n ('A' for aplhabetic, '1' for nummeric) You can leave this field blank",""); while ((txt!="") && (txt!="A") && (txt!="a") && (txt!="1") && (txt!=null)) { txt=prompt("ERROR!\nThe only possible values for type of list are blank 'A' and '1'.",""); } if (txt!=null) { if (txt=="") { AddTxt="\r[list]\r\n"; } else { AddTxt="\r[list="+txt+"]\r"; } txt="1"; while ((txt!="") && (txt!=null)) { txt=prompt("List Item:\nLeave it blank to End the List",""); if (txt!="") { AddTxt+="[*]"+txt+"\r"; } } AddTxt+="[/list]\r\n"; AddText(AddTxt); } } } function underline() { if (helpmode) { alert("Underline Tag\nUnderlines the enclosed text.\nUsage: [u]This text is underlined[/u]"); } else if (advmode) { AddTxt="[u] [/u]"; AddText(AddTxt); } else { txt=prompt("Please enter the text that should be underlined.","Text"); if (txt!=null) { AddTxt="[u]"+txt+"[/u]"; AddText(AddTxt); } } } function setfocus() { document.input.message.focus(); }
WELLCOME IN NOOR FORUM..... Last Active : Never
Not logged in [Login - Register]

|#*XMB TEMPLATE FILE*#|misc_online_u2ufield|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|css|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|misc_online_row_admin|#*XMB TEMPLATE*#| 1231308135 W T A L M   |#*XMB TEMPLATE FILE*#|viewthread_poll_options_view|#*XMB TEMPLATE*#| () |#*XMB TEMPLATE FILE*#|misc_login|#*XMB TEMPLATE*#|
 
 
|#*XMB TEMPLATE FILE*#|misc_lostpw|#*XMB TEMPLATE*#|

|#*XMB TEMPLATE FILE*#|misc_online|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|misc_online_admin|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|index_whosonline|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_folders|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|faq_usermaint|#*XMB TEMPLATE*#|
-
- - - -
 
[+]
 






|#*XMB TEMPLATE FILE*#|index|#*XMB TEMPLATE*#|
   

:

=
=
|#*XMB TEMPLATE FILE*#|u2u|#*XMB TEMPLATE*#|
  
|#*XMB TEMPLATE FILE*#|u2u_drafts|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_msg|#*XMB TEMPLATE*#|

|#*XMB TEMPLATE FILE*#|u2u_folderlink|#*XMB TEMPLATE*#|
()
|#*XMB TEMPLATE FILE*#|u2u_footer|#*XMB TEMPLATE*#|

Developed By &
|#*XMB TEMPLATE FILE*#|u2u_header|#*XMB TEMPLATE*#| WELLCOME IN NOOR FORUM..... -






|#*XMB TEMPLATE FILE*#|u2u_ignore|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_inbox|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_main|#*XMB TEMPLATE*#|

- -

|#*XMB TEMPLATE FILE*#|u2u_outbox|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_quotabar|#*XMB TEMPLATE*#|
|#*XMB TEMPLATE FILE*#|u2u_row|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|u2u_row_none|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|u2u_send|#*XMB TEMPLATE*#|

|#*XMB TEMPLATE FILE*#|u2u_send_preview|#*XMB TEMPLATE*#|

|#*XMB TEMPLATE FILE*#|u2u_view|#*XMB TEMPLATE*#|




|#*XMB TEMPLATE FILE*#|index_category|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|popup_footer|#*XMB TEMPLATE*#| |#*XMB TEMPLATE FILE*#|index_forum|#*XMB TEMPLATE*#|  
|#*XMB TEMPLATE FILE*#|forumdisplay_multipage|#*XMB TEMPLATE*#|   |#*XMB TEMPLATE FILE*#|forumdisplay_multipage_admin|#*XMB TEMPLATE*#|   |#*XMB TEMPLATE FILE*#|forumdisplay|#*XMB TEMPLATE*#|
 
   
 

    

 )
*
 )
*
|#*XMB TEMPLATE FILE*#|forumdisplay_admin|#*XMB TEMPLATE*#|
 
 

You Are Not Registered Or Not Logged In
If you are not registered or logged in, you may still be able to view forums and topics, but you will not have access to your member control panel or settings

  Forum: Topics: Posts Last Post:
منتدى الحماية و الأختراقات
موضوعات و برامج الحماية  
1 1
11-5-2004 at 01:33 AM
by Noor
 
موضوعات و برامج الأختراق  
0 0 Last Active : Never
RP Announcements and Schedule
The Whiner's RP Board  
Miss RPing? Want to complain and want an RP? WHINE WHINE WHINE! that's what i'm going to do! ;) because i want to rp!
7 20
5-23-2004 at 02:28 PM
by Sarah Graves
 
Elizabeth's RP Schedule  
Main RP-line stuff is GMed by Lizzy. All her RPs found here.
1 4
1-11-2003 at 03:53 AM
by absolutSin
 
Noor's RP Schedule  
Co-GMs a ton of stuff, and her own plotlines dealing with the unmentionables of society.
1 1
3-19-2003 at 04:28 AM
by absolutSin
 
Matt's RP Schedule  
Vampirism and future corporations gone amuck. Do deathrays from above count?
1 2
1-1-2003 at 09:42 PM
by absolutSin
 
Austin's RP Schedule  
it's all about war and sabotage
0 0 Last Active : Never
Jeff's RP Schedule  
technomages. beware the technobabble bible
2 10
1-18-2003 at 04:24 AM
by Raike
 
Alex's RP Schedule  
maybe music is just that powerful
0 0 Last Active : Never
Wayne's RP Schedule  
robots of DOOM! run while you can.
1 10
12-16-2002 at 09:21 PM
by absolutSin
 
Meg's RP Schedule  
she just kind of forgot... something about albino japanese men? o.O
1 1
7-31-2003 at 01:56 AM
by Spike
 
General
Forum Bugs and Annoucements  
Sometimes things don't work on the forum. If you notice a problem, or are having an issue with something in general, post it here
3 13
6-18-2003 at 07:02 PM
by Tori
 
General Discussion
Noor's Gallery  
Post any artwork specifically for Wonderland here, for either critiques, or to be added to the official wonderland gallery
15 40
10-31-2004 at 04:31 AM
by SAUD
 
The Sphinx  
The tavern is dark, the shadows hiding the customers, a perfect place to discuss things which might border on the Grimm.
6 21
6-28-2004 at 12:22 PM
by chris
 
Alice's Looking Glass  
All and any revelations about the plotlines, the characters, or the wonderland lore
8 33
6-28-2004 at 12:19 PM
by chris
 
Wonderland
Transcending Time RPG  
For those that can't make it to a game in real-time chat, this forum can be used as a center for long-term RPs.
0 0 Last Active : Never
Past  
ideas for the Past!
1 4
6-28-2004 at 12:16 PM
by chris
 
Present  
ideas for the Present!
0 0 Last Active : Never
Future  
ideas for the Future!
3 9
6-28-2004 at 12:16 PM
by chris
 
Lock  
ideas for Lock!
1 4
6-28-2004 at 12:15 PM
by chris
 
Out Of Character
Character Prototypes  
Post a character idea you have here, for feedback from fellow RPers.
2 17
6-28-2004 at 12:14 PM
by chris
 
Character Applications  
Have questions about submitting a character, or check here to see if you have been approved.
2 4
7-9-2004 at 12:10 AM
by Malix
 
Related Updates  
updates relating to wonderland. need something changed on a bio?, post it here.
13 35
6-28-2004 at 12:14 PM
by chris
 
Who's Online - No Guests and 21448 Members online now.
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,