// To load an external script
function include_scr(asp_script, parameters) {

    document.write('<' + 'script');
    document.write(' language="javascript" type="text/javascript"');
    document.write(' src="' + asp_script);
    document.write('?rnd=' + Math.random() + '&' + parameters + '">'); // randomising so that no cache
    document.write('"</' + 'script' + '>');
};

function updateHTML(strHTML)
{
  //alert(strHTML); // for debugging purposes
  document.getElementById("ratingcontain").innerHTML = strHTML;
}

// Need to change the parameters; depending on the asp script and variables
//
include_scr("siteinfo.asp");


