﻿
// Her legges javascript-funksjoner

function sendmail(user, domain, suffix) {
	document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}
function insertFlashMovie(filename, width, height, bgcolor) {
    //new SWFObject(url, movieid, width, height, requiredversion, bgcolor);
    var path = "/uploads/flash/" + filename;
    var so = new SWFObject(path, "mymovie", width, height, "6", bgcolor);
    //so.addParam("wmode", "transparent"); //enables transparency
    so.write("flashcontent"); //replaces all content in this object with flash content
}