/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function tourFrame(paneType)
{
    document.getElementById('paneItinerary').style.display = "none";
    document.getElementById('panePrices').style.display = "none";
    document.getElementById('paneGallery').style.display = "none";

    document.getElementById('pane' + paneType).style.display = "inline";
}

win1 = new Window('1', {className: "alphacube", title: "Sample1", width:200, height:150, top:70, left:100}); win1.getContent().innerHTML = "<h1>1</h1>";

