/*
Cross browser marquee script II- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/


//Specify the marquee's width (in pixels)
var marqueewidth=190
//Specify the marquee's height
var marqueeheight=850
//Specify the marquee's scroll speed (larger is faster)
var speed=2
//Specify the marquee contents
var marqueecontents="<h2>Site News<\/h2> <p align='justify'>This is the new DenzoSOFT site.&nbsp;<br> Only free guitar resources for everyone.<br>  I'm still working on it so something may not be correct. Have fun with all things you'll find here.<\/p> <h2>DenzoSOFT<\/h2> <p align='justify'>DenzoSOFT was born from my need to have powerful tools to support my guitar studies.<br> I started to write Denzo Guitar Software in 1993 with VB 2.0. Now you have a version that is more and more complex and complete than first one. Reading feature you can observe the incredible number of functionalities that make this software unique.<br> But DenzoSOFT offers other applications that have the main purpose of covering other aspects of guitar studing such as improvisation, tab playing and chord referencing.<\/p> <p align='justify'>After downloading software remember to post your question to DenzoSOFT forum.<\/p> <h2>Guitar-TECH<\/h2> <p align='justify'>Guitar-TECH is the first site totally built on DenzoSOFT technology.<br> On this site you can find easly thousand of chords and scales ordered by type, root. This material cover all stiles from Jazz, to Rock, to Funky.<br> Each scale position is presented also in tab form, linked with its own MIDI so you can play and hear its sound.<br> You can find some theory reference in PDF format.<br> Let's go immediatly <a href='http:\/\/guitartech.interfree.it\/indexEn.html'>there<\/a>!<\/p> <h2>DenzoSOFT 2000<\/h2> <p align='justify'>This is my new idea! After many years of developing guitar applications I've decided to collect all my functionalities and algorithms in a COM Library and give it to anyone for enhancing the guitar application software development of other guitarsist\/programmers.<br> Untill now I don't know the release date because while I'm writing this library I'm developing new applications only for Win32 platform.<br> The new platform named Denzo Music Library (DML) will allow a very rapid guitar application development offering a wide range of classes and GUI components.<br> It will be also exposed a script engine for local function extension, probably VBScript and JScript.<\/p> <h2>Registration<\/h2> <p align='justify'>A lot of user ask me about registration for a free software. The answer is simple, I don't want anybody get money from my applications so I decided to keep track of every user and give by myself the key for software activation. I don't know if I registration remains or will be forgotten... I'll see in future. Be patience!<\/p> <h2>Bookware and Support<\/h2> <p align='justify'>As you can understand writing this software is a very time-expensive activity. I'm very glad to do it and to give what I find usefull to everybody free. But I'm very pleased if you could support my work. I've thought this way:<\/p> <p align='justify'>- you could send me a Music Thoery Book or a Guitar Technique Book that you consider interesting for any guitarist (I also accept a copy of book). Send it to De Sanctis Alessadro - Euro2000 - Via Paleocapa 7, 20121 Milan Italy.<br> - or you can go to my <a href='..\/Sponsor\/sponsors.htm'> sponsor page<\/a> and select any of my sponsor: as you can see my site is popup banner free so you have to click by yourself each sponsor image and eventually read what they offer: it's free for you and something for me!<\/p> <h2>Future applications<\/h2> <p align='justify'>I'm considering to write new softwares:<\/p> <p align='justify'>- surely an evolution of <a href='DGS.htm'> Denzo Guitar Software<\/a> COM aware<br> - a CAD application for note reading and rythm solfeggio to develope sight-reading<br> - a Rapid Song Development to build in few minutes drums\/bass\/harmony for song improvisation, this is an evolution of <a href='DQN.htm'> DenzoQuencer<\/a><\/p> <h2>RMTF<\/h2> <p>New DenzoSOFT applications will have support for <a href='http:\/\/www.ens-lyon.fr\/~nmanel\/Rich_MIDI_tabature_format.html'> Rich MIDI Tablature Format<\/a> even if it seems to me that interest for this file format is vanishing. You have to wait for DenzoSOFT 2000 application group.<\/p>  ";

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){

if (document.layers){ 
setTimeout("window.onresize=regenerate",450)
intializemarquee()

}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

document.write('<ilayer width=&{marqueewidth}; height=&{marqueeheight}; name="cmarquee01">');
document.write('<layer name="cmarquee02" width=&{marqueewidth}; height=&{marqueeheight};></layer>');
document.write('</ilayer>');

window.onload=regenerate2
//window.onload=go();
