
helpstat = false;
stprompt = false;
basic = true;
function thelp(swtch){
if (swtch == 1){
basic = false;
stprompt = false;
helpstat = true;
} else if (swtch == 0) {
helpstat = false;
stprompt = false;
basic = true;
} else if (swtch == 2) {
helpstat = false;
basic = false;
stprompt = true;
}
}
function AddText(NewCode) {
document.PostTopic.Message.value+=NewCode
}
function email() {
if (helpstat) {
alert(”Email Tag Turns an email address into a mailto hyperlink.nnUSE #1: [url]someone@anywhere.com[/url] nUSE #2: [url=”someone@anywhere.com”]link text[/url]”);
}
else if (basic) {
AddTxt=”[url][/url]”;
AddText(AddTxt);
}
else {
txt2=prompt(”Text to be shown for the link. Leave blank if you want the url to be shown for the link.”,”");
if (txt2!=null) {
txt=prompt(”URL for the link.”,”mailto:”);
if (txt!=null) {
if (txt2==”") {
AddTxt=”[url]”+txt+”[/url]”;
AddText(AddTxt);
} else {
AddTxt=”[url=”"+txt+”"]”+txt2+”[/url]”;
AddText(AddTxt);
}
}
}
}
}
function showsize(size) {
if (helpstat) {
alert(”Size Tag Sets the text size. Possible values are 1 to 6.n1 being the smallest and 6 the largest.nnUSE: [size=”+size+”]This is size “+size+” text[/size=”+size+”]”);
} else if (basic) {
AddTxt=”[size=”+size+”][/size=”+size+”]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be size “+size,”Text”);
if (txt!=null) {
AddTxt=”[size=”+size+”]”+txt+”[/size=”+size+”]”;
AddText(AddTxt);
}
}
}
function bold() {
if (helpstat) {
alert(”Bold Tag Makes the enlosed text bold.nnUSE: [b]This is some bold text[/b]”);
} else if (basic) {
AddTxt=”[b][/b]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be made BOLD.”,”Text”);
if (txt!=null) {
AddTxt=”[b]”+txt+”[/b]”;
AddText(AddTxt);
}
}
}
function italicize() {
if (helpstat) {
alert(”Italicize Tag Makes the enlosed text italicized.nnUSE: [i]This is some italicized text[/i]”);
} else if (basic) {
AddTxt=”[i][/i]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be italicized”,”Text”);
if (txt!=null) {
AddTxt=”[i]”+txt+”[/i]”;
AddText(AddTxt);
}
}
}
function quote() {
if (helpstat){
alert(”Quote tag Quotes the enclosed text to reference something specific that someone has posted.nnUSE: [quote]This is a quote[/quote]”);
} else if (basic) {
AddTxt=” [quote] [/quote]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be quoted”,”Text”);
if(txt!=null) {
AddTxt=” [quote] “+txt+” [/quote]”;
AddText(AddTxt);
}
}
}
function showcolor(color) {
if (helpstat) {
alert(”Color Tag Sets the text color. Any named color can be used.nnUSE: [”+color+”]This is some “+color+” text[/”+color+”]”);
} else if (basic) {
AddTxt=”[”+color+”][/”+color+”]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be “+color,”Text”);
if(txt!=null) {
AddTxt=”[”+color+”]”+txt+”[/”+color+”]”;
AddText(AddTxt);
}
}
}
function center() {
if (helpstat) {
alert(”Centered tag Centers the enclosed text.nnUSE: [center]This text is centered[/center]”);
} else if (basic) {
AddTxt=”[center][/center]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be centered”,”Text”);
if (txt!=null) {
AddTxt=”[center]”+txt+”[/center]”;
AddText(AddTxt);
}
}
}
function hyperlink() {
if (helpstat) {
alert(”Hyperlink Tag nTurns an url into a hyperlink.nnUSE: [url]http://www.anywhere.com[/url]nnUSE: [url=http://www.anywhere.com]link text[/url]”);
} else if (basic) {
AddTxt=”[url][/url]”;
AddText(AddTxt);
} else {
txt2=prompt(”Text to be shown for the link.nLeave blank if you want the url to be shown for the link.”,”");
if (txt2!=null) {
txt=prompt(”URL for the link.”,”http://”);
if (txt!=null) {
if (txt2==”") {
AddTxt=”[url]”+txt+”[/url]”;
AddText(AddTxt);
} else {
AddTxt=”[url=”"+txt+”"]”+txt2+”[/url]”;
AddText(AddTxt);
}
}
}
}
}
function image() {
if (helpstat){
alert(”Image Tag Inserts an image into the post.nnUSE: [img]http://www.anywhere.com/image.gif[/img]”);
} else if (basic) {
AddTxt=”[img][/img]”;
AddText(AddTxt);
} else {
txt=prompt(”URL for graphic”,”http://”);
if(txt!=null) {
AddTxt=”[img]”+txt+”[/img]”;
AddText(AddTxt);
}
}
}
function showcode() {
if (helpstat) {
alert(”Code Tag Blockquotes the text you reference and preserves the formatting.nUsefull for posting code.nnUSE: [code]This is formated text[/code]”);
} else if (basic) {
AddTxt=” [code] [/code]”;
AddText(AddTxt);
} else {
txt=prompt(”Enter code”,”");
if (txt!=null) {
AddTxt=”[code]”+txt+”[/code]”;
AddText(AddTxt);
}
}
}
function list() {
if (helpstat) {
alert(”List Tag Builds a bulleted, numbered, or alphabetical list.nnUSE: [list] [*]item1[/*] [*]item2[/*] [*]item3[/*] [/list]”);
} else if (basic) {
AddTxt=” [list][*] [/*][*] [/*][*] [/*][/list]”;
AddText(AddTxt);
} else {
type=prompt(”Type of list Enter ‘A’ for alphabetical, ‘1′ for numbered, Leave blank for bulleted.”,”");
while ((type!=”") && (type!=”A”) && (type!=”a”) && (type!=”1″) && (type!=null)) {
txt=prompt(”ERROR! The only possible values for type of list are blank ‘A’ and ‘1′.”,”");
}
if (type!=null) {
if (type==”") {
AddTxt=”[list]”;
} else {
AddTxt=”[list=”+type+”]”;
}
txt=”1″;
while ((txt!=”") && (txt!=null)) {
txt=prompt(”List item Leave blank to end list”,”");
if (txt!=”") {
AddTxt+=”[*]”+txt+”[/*]”;
}
}
if (type==”") {
AddTxt+=”[/list] “;
} else {
AddTxt+=”[/list=”+type+”]”;
}
AddText(AddTxt);
}
}
}
function underline() {
if (helpstat) {
alert(”Underline Tag Underlines the enclosed text.nnUSE: [u]This text is underlined[/u]”);
} else if (basic) {
AddTxt=”[u][/u]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be Underlined.”,”Text”);
if (txt!=null) {
AddTxt=”[u]”+txt+”[/u]”;
AddText(AddTxt);
}
}
}
function showfont(font) {
if (helpstat){
alert(”Font Tag Sets the font face for the enclosed text.nnUSE: [font=”+font+”]The font of this text is “+font+”[/font]”);
} else if (basic) {
AddTxt=”[font=”+font+”][/font=”+font+”]”;
AddText(AddTxt);
} else {
txt=prompt(”Text to be in “+font,”Text”);
if (txt!=null) {
AddTxt=”[font=”+font+”]”+txt+”[/font=”+font+”]”;
AddText(AddTxt);
}
}
}
function autoReload(objform)
{
var tmpCookieURL = ‘/forum/’;
if (objform.SelectSize.value == 1)
{
document.PostTopic.Message.cols = 45;
document.PostTopic.Message.rows = 6;
}
if (objform.SelectSize.value == 2)
{
document.PostTopic.Message.cols = 80;
document.PostTopic.Message.rows = 12;
}
if (objform.SelectSize.value == 3)
{
document.PostTopic.Message.cols = 90;
document.PostTopic.Message.rows = 12;
}
if (objform.SelectSize.value == 4)
{
document.PostTopic.Message.cols = 130;
document.PostTopic.Message.rows = 15;
}
document.cookie = tmpCookieURL + “strSelectSize=” + objform.SelectSize.value;
}
Mensile | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
3/3/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=229')">Baccanale Romano |
3/5/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=195')">BIBENDA DAY (Roma) |
3/6/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=203')">PROWEIN (Düsseldorf) |
3/8/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=226')">Brindisi al Quirinale |
3/11/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="JavaScript:openWindow3('pop_event.asp?event_id=222')">DiVino Amore (Salerno) |
href="JavaScript:openWindow3('pop_event.asp?event_id=225')">ITALISSIMA |
2/23/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=224')">100 Barolo (Roma) |
2/20/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=223')">ENOPOLI a Barco Borghes… |
2/19/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=219')">Le Donne dell’Olio (Rom… |
2/18/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=215')">Mese dell’Olio Dop in C… |
2/5/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=221')">Settimana nazionale del… |
2/3/2005 |
href="JavaScript:openWindow3('pop_event.asp?event_id=220')">Valorizzare i vini auto… |
href="/forum/events.asp?month=2&year=2005"> | Marzo 2005 |
href="/forum/events.asp?month=4&year=2005"> | ||||
Dom | Lun | Mar | Mer | Gio | Ven | Sab |
27 | 28 | href="/forum/events.asp?date=3/1/2005&month=3&year=2005">1 | href="/forum/events.asp?date=3/2/2005&month=3&year=2005">2 |
href="/forum/events.asp?date=3/3/2005&month=3&year=2005">3 href="JavaScript:openWindow3('pop_event.asp?event_id=229')">Baccanale Romano | href="/forum/events.asp?date=3/4/2005&month=3&year=2005">4 |
href="/forum/events.asp?date=3/5/2005&month=3&year=2005">5 href="JavaScript:openWindow3('pop_event.asp?event_id=195')">BIBENDA DAY (Roma) |
href="/forum/events.asp?date=3/6/2005&month=3&year=2005">6 href="JavaScript:openWindow3('pop_event.asp?event_id=203')">PROWEIN (Düsseldorf) |
href="/forum/events.asp?date=3/7/2005&month=3&year=2005">7 href="JavaScript:openWindow3('pop_event.asp?event_id=203')">PROWEIN (Düsseldorf) |
href="/forum/events.asp?date=3/8/2005&month=3&year=2005">8 href="JavaScript:openWindow3('pop_event.asp?event_id=203')">PROWEIN (Düsseldorf) href="JavaScript:openWindow3('pop_event.asp?event_id=226')">Brindisi al Quirinale | href="/forum/events.asp?date=3/9/2005&month=3&year=2005">9 | href="/forum/events.asp?date=3/10/2005&month=3&year=2005">10 |
href="/forum/events.asp?date=3/11/2005&month=3&year=2005">11 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) href="JavaScript:openWindow3('pop_event.asp?event_id=222')">DiVino Amore (Salerno) href="JavaScript:openWindow3('pop_event.asp?event_id=225')">ITALISSIMA |
href="/forum/events.asp?date=3/12/2005&month=3&year=2005">12 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) href="JavaScript:openWindow3('pop_event.asp?event_id=222')">DiVino Amore (Salerno) href="JavaScript:openWindow3('pop_event.asp?event_id=225')">ITALISSIMA |
href="/forum/events.asp?date=3/13/2005&month=3&year=2005">13 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) href="JavaScript:openWindow3('pop_event.asp?event_id=222')">DiVino Amore (Salerno) href="JavaScript:openWindow3('pop_event.asp?event_id=225')">ITALISSIMA |
href="/forum/events.asp?date=3/14/2005&month=3&year=2005">14 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/15/2005&month=3&year=2005">15 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/16/2005&month=3&year=2005">16 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/17/2005&month=3&year=2005">17 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/18/2005&month=3&year=2005">18 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/19/2005&month=3&year=2005">19 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) |
href="/forum/events.asp?date=3/20/2005&month=3&year=2005">20 href="JavaScript:openWindow3('pop_event.asp?event_id=216')">VINDESIGN (Pavia) | href="/forum/events.asp?date=3/21/2005&month=3&year=2005">21 | href="/forum/events.asp?date=3/22/2005&month=3&year=2005">22 | href="/forum/events.asp?date=3/23/2005&month=3&year=2005">23 | href="/forum/events.asp?date=3/24/2005&month=3&year=2005">24 | href="/forum/events.asp?date=3/25/2005&month=3&year=2005">25 | href="/forum/events.asp?date=3/26/2005&month=3&year=2005">26 |
href="/forum/events.asp?date=3/27/2005&month=3&year=2005">27 | href="/forum/events.asp?date=3/28/2005&month=3&year=2005">28 | href="/forum/events.asp?date=3/29/2005&month=3&year=2005">29 | href="/forum/events.asp?date=3/30/2005&month=3&year=2005">30 | href="/forum/events.asp?date=3/31/2005&month=3&year=2005">31 | 1 | 2 |
|
href="http://www.superdeejay.net" target=_blank> |
Le categorie della guida
Ultimi interventi
Link correlati |