function schrijfSound(url) {
    document.write("<embed src=\"" + url + "\" height=\"45\" width=\"300\">");
}
function schrijfVideo(url, width, height) {
    document.write("<embed src=\"" + url + "\" height=\"" + height + "\" width=\"" + width + "\">");
}

/*
function writeFlash(url, width, height, shortUrl) {
    document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"" + width + "\" height=\"" + height + "\" id=\"pr\" align=\"middle\">")
    document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />")
    document.write("<param name=\"movie\" value=\"" + url + "\" />")
    document.write("<param name=\"quality\" value=\"high\" />")
    document.write("<param name=\"bgcolor\" value=\"#ffffff\" />")
    document.write("<embed src=\"" + url + "\" quality=\"high\" bgcolor=\"#ffffff\" width=\"" + width + "\" height=\"" + height + "\" name=\"pr\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />")
    document.write("</object>")
    writeDownload(url, shortUrl);
}

function writeMP3(url, width, height, shortUrl) {
    document.write("<object  height=\"42\" width=\"300\">")
    document.write("	<param name=\"src\" value=\"$url\">")
    document.write("	<param name=\"autoplay\" value=\"true\">")
    document.write("	<param name=\"controller\" value=\"true\">")
    document.write("	<param name=\"bgcolor\" value=\"#FFFFFF\">")
    document.write("	<embed src=\"" + url + "\" autostart=\"true\" loop=\"false\" controller=\"true\" bgcolor=\"#FFFFFF\" height=\"42\" width=\"300\">")
    document.write("</object>")
    writeDownload(url, shortUrl);
}

function writeQuicktime(url, width, height, shortUrl) {
    document.write("<embed src=\"" + url + "\" height=\"" + height + "\" width=\"" + width + "\">");
}

function writeWindowsMedia(url, width, height, shortUrl) {
    document.write("<object type=\"application/x-mplayer2\" height=\"" + height + "\" width=\"" + width + "\">");
    document.write("    <param name=\"src\" value=\"" + url + "\">");
    document.write("</object>");
    writeDownload(url, shortUrl);
}

function writeDownload(url, shortUrl) {
    document.write("<br />");
    document.write("Downleudeuh ? <a href=\"" + url + "\">" + shortUrl + "</a>");
}
*/
