﻿var codes = new Array("bVNHX9QZlYs", "YcQMs6-AN6g", "pzUd229o2NM", "l0t3M0G4Hiw", "Yn_homK-hds");

function GetLink(type, id) {
	type = (Math.round(type));
	id = (Math.round(id) - 1);
	if (type == 2 && id >= 0 && id < codes.length) {
		var code = codes[id];
		return "http://www.youtube.com/watch?v=" + code + "&fmt=18";
	} else
	if (type == 1 && id >= 0 && id < 5) {
		id = id + 1;

		return "Documents/Kaarten/Kaart" + id + ".jpg";
	} else {
		return "";
	}
}

function GetResource(type, id, width, height) {
	type = (Math.round(type));
	id	 = (Math.round(id) - 1);
	if (type == 2 && id >= 0 && id < codes.length) {
		var code		= codes[id];
		
		var url			= "http://www.youtube.com/watch?v=" + code + "&fmt=18";
		var objUrl		= "http://www.youtube-nocookie.com/v/" + code + "&fmt=18&fs=1&rel=0&color1=0x006699&color2=0x54abd6";
		
		var objTag		=	"<object width='" + width + "' height='" + height + "'>" +
							"<param name='movie' value='" + objUrl + "'></param>" +
							"<param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param>" +
							"<embed src='" + objUrl + "' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='" + width + "' height='" + height + "'></embed>" +
							"</object>";

		return objTag;
	} else
	if (type == 1 && id >= 0 && id < 5) {	
		id = id + 1;

		var imageSrc	= "Images/ECard/Kaarten/KaartLarge" + id + ".jpg";
		var imageTag	= "<img src='" + imageSrc + "' width='" + width + "' height='" + height + "' />";
		var url			= "Documents/Kaarten/Kaart" + id + ".jpg";
		var urlTag		= "<a href='" + url + "' target='showImage'>" + imageTag + "</a>";

		return urlTag;
	} else {
		return "";
	}
}

function GoMarnix() {
	window.location = "http://www.hetmarnix.nl/";
}

function GoAlbrecht() {
	window.location = "http://www.albrechtdesign.nl/";
}

function GoHome() {
	window.location = "index.html";
}