
function showIntroduction(message)
{
		var text ;
		text = message ;		
		document.write ("<marquee scrollamount='1' scrolldelay='250'  height=60px width=250px direction='up'>");
        document.write(text);
        document.write ("</marquee>")	;	
		
}
