var viki = {

noFlashPage:function() {
div = document.createElement( 'div' );
p = document.createElement( 'p' );
p.innerHTML = "To enjoy the VIKIMUSIC site you need to install the Flash player version 8 or higher.<br /><br /><button onclick='location.href=\"http://www.adobe.com/go/getflash/\"' style='font-family:arial; font-size: 12px;'>get Flash</button><button onclick='location.href=\"http://www.cdbaby.com/cd/vikimusic\"' style='font-family:arial; margin-left: 20px; font-size: 12px;'> No, thanks, I just want to buy the CD</button>";
p.style.width='570px';
p.style.margin='30px auto 0';
p.style.borderColor='#00323f';
p.style.borderWidth='1px';
p.style.borderStyle='solid';
p.style.backgroundColor='white';
p.style.padding='10px';
p.style.color='#00323f';
p.style.fontFamily='Arial';
p.style.fontSize='12px';
div = div.appendChild(p);
document.body.appendChild(div);

vImage = document.createElement( 'img' );
vImage.style.width='590px';
vImage.style.marginTop='10px';
vImage.style.borderColor='#00323f';
vImage.style.borderWidth='2px';
vImage.style.borderStyle='solid';
vImage.style.top='140px';
vImage.style.height='450px';
vImage.setAttribute('src','images/flashScreenShot.jpg');
document.body.appendChild(vImage);
}

}