﻿


// CrossBrowser Flash ID 
function getFlashObject(name) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
  		return window[name];
	} else {
  		return document[name];
	}
}

// Return Project to FlashObj
function getProject() {
	var project = self.location.search.substr(1);
	return project;
}

// Generate Flash Object
function flashObject(Name, File, Width, Height, Alpha) {
	//
	if (Alpha) var transparent = "wmode='transparent'";
	//
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+Width+"' height='"+Height+"' id='"+Name+"'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='"+File+"' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='wmode' value='transparent' />");
    document.write("<embed src='"+File+"' quality='high' "+transparent+" width='"+Width+"' height='"+Height+"' name='"+Name+"' id='"+Name+"' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>");
	document.write("</object>");
}

// Flash Titel
function flashTitel(TekstVar, TekstSizeVar, ColorVar, WidthVar, HeightVar) {
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+WidthVar+"' height='"+HeightVar+"' id='FlashTitel'>");
	document.write("<param name='allowScriptAccess' value='always' />");
	document.write("<param name='movie' value='flash/textHeader.swf' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='wmode' value='transparent' />");
	document.write("<param name='FlashVars' value='TekstVar="+TekstVar+"&TekstSizeVar="+TekstSizeVar+"&ColorVar="+ColorVar+"&WidthVar="+WidthVar+"&HeightVar="+HeightVar+"' />");
	document.write("<embed FlashVars='TekstVar="+TekstVar+"&TekstSizeVar="+TekstSizeVar+"&ColorVar="+ColorVar+"&WidthVar="+WidthVar+"&HeightVar="+HeightVar+"' src='flash/textHeader.swf' quality='high' wmode='transparent' width='"+WidthVar+"' height='"+HeightVar+"' name='FlashTitel' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>");
	document.write("</object>");
}

// mailto:
function mailTo(nameVar, domainVar) {
    document.write('<a href=\"mailto:' + nameVar + '@' + domainVar + '\">');
    document.write(nameVar + '@' + domainVar + '</a>'); 
}




