// JavaScript Document

function css() {
    document.write('<link type="text/css" rel="stylesheet" href="style.css" />');
    if (navigator.appName.match("Internet Explorer")) {
        if (navigator.userAgent.match("MSIE 7")) {
            document.write('<link type="text/css" rel="stylesheet" href="ie7.css" />');
            } else {
                    document.write('<link type="text/css" rel="stylesheet" href="ie.css" />');
                    }
        }
}

function flash_write(src, w, h, id) {
    if (! id) {
        id="flash_"+Math.round(10000*Math.random());
        }
    document.write("<object id='"+id+"' type='application/x-shockwave-flash' data='"+src+"' width='"+w+"' height='"+h+"'>");
    document.write("<param name='movie' value='"+src+"' />");
    document.write("<param value='high' name='quality' />");
    document.write("</object>");
}


