/////////////////////////////////////////////////
//*   Copyright Kaiserwilhelmdritten 2007     *//
//*       http://www.kaiserware.co.nr/        *//
//*          leased to pyrochan at            *//
//*           http://pyrochan.net/            *//
/////////////////////////////////////////////////


var mymessage = 'Welcome to the Pyro Parlour';
//*write your message in the variable
//*above, make sure it is in single
//*quote marks, avoid the following
//*charaters
//* , ; ' " \ / {} []
//*as they are used in javascript

function disp_msg()
{
document.getElementById('mymsg').innerHTML = mymessage;
}

//*this function alters the html in the
//*div container, you can add tags for
//*the likes of links if you wish

/////////////////////////////////////////////////
//*   Copyright Kaiserwilhelmdritten 2007     *//
//*       http://www.kaiserware.co.nr/        *//
/////////////////////////////////////////////////