﻿function loadDemo(type)
{
    if (type == "youstars")
    {
        var demoWin = window.open("", "demo", "width=775,height=400,status=yes,location=no,menubar=no,personalbar=no,toolbar=no,scrollbars=no,resizable=no");
        var html = "<html><head><title>YouStar Demo</title></head><body>" +
            getSwf("swfDemo", "images/homebanner/youstar_banner.swf", 750, 350, true, "direct", 9) +
            "</body></html>";
        demoWin.document.write(html);
        demoWin.focus();
    }
    else
    {
        var demoWin = window.open("", "demo", "width=600,height=500,status=yes,location=no,menubar=no,personalbar=no,toolbar=no,scrollbars=no,resizable=no");
        var html = "<html><head><title>YouStar Demo</title></head><body>" +
            getSwf("swfDemo", "images/demo.swf", 550, 440, true, "direct", 9) +
            "</body></html>";
        demoWin.document.write(html);
        demoWin.focus();
    }
}
