// JavaScript Document function companyUser() { var actualocation = document.location.href; if (actualocation == 'http://www.companionsclub.co.uk/creatures/?view=submit') { document.getElementById("flashBox").style.visibility = "hidden"; var company = getCookie('SirensCompany'); var UserBox = document.getElementById("usernameBox"); if (company=="red") { UserBox.innerHTML = "

Congratulations, you have successfully registered to the Company of Creatures of the Four Elements.
your username and password is below, please use this to login on to the company in the future

username: rock

password: fire

"; } else if (company=="blue") { UserBox.innerHTML = "

Congratulations, you have successfully registered to the Company of Reptiles & Sea Creatures.
your username and password is below, please use this to login on to the company in the future

username: lizard

password: scale

"; } else if (company=="green") { UserBox.innerHTML = "

Congratulations, you have successfully registered to the Company of Two and Four Legged Creatures.
your username and password is below, please use this to login on to the company in the future

username: animal

password: legs

"; } else { UserBox.innerHTML = "

Congratulations, you have successfully registered to the Company of Winged Creatures.
your username and password is below, please use this to login on to the company in the future

username: wings

password: fly

"; } } }