function IncludeJavaScript(jsFile)
{
    document.write('<script type="text/javascript" src="'
        + jsFile + '"></scr' + 'ipt>');
}

var rootServer="http://vscs.visualsite.it/";
var vscs=rootServer+"VSCSServlet";

IncludeJavaScript(rootServer+'js/sedi.js');
IncludeJavaScript(rootServer+'js/virtualtour.js');
IncludeJavaScript(rootServer+'js/linktodocument.js');


function PGSezione(block, cc, ct, extraParam) {
    var tl="";
    var ip="";
    var height="";
    var width="";
    if(extraParam.tl!=undefined){
        tl=extraParam.tl;
    }
    if(extraParam.ip!=undefined){
        ip=extraParam.ip;
    }
    if(extraParam.width!=undefined){
        width=extraParam.width;
    }
    if(extraParam.height!=undefined){
        height=extraParam.height;
    }
    $.getJSON(vscs+"?block="+block+"&cc="+cc+"&ct="+ct+"&tl="+tl+"&ip="+ip+"&width="+width+"&height="+height+"&callback=?",
        function(data) {
            $("#"+block).html(data.html);
        //$("html").html(data.html);
        });

}



