   <!--

/*
/////////////////////////////////////////
//               This                  //
// "Get-What-You-Deserve Video Script" //
// is created by www.planetcrypton.com //
//       GVS © Planet Crypton          //
/////////////////////////////////////////
//    It determines whether to use     //
//      QuickTime or MediaPlayer       //
//          and in which size          //
/////////////////////////////////////////
*/

/* ::: EDIT 1a ::: */

path = "http://www.noerfilm.dk/filmuploads/"; // EDIT: path to folder containing the films (ex. "./media/noerfilm/" or "http://www.site.com/media/noerfilm/")
embed = "yes"; 		// EDIT: "yes" if video should play within the webpage, "no" if the video should be played on top of the webpage

dimensions = new Object();
dimensions.lille  = new Object();
dimensions.mellem = new Object();
dimensions.stor  = new Object();

/* ::: EDIT 1b ::: */

dimensions.lille.width   = 480; // EDIT: specify width for "_lille" -film
dimensions.lille.height  = 360; // EDIT: specify height for "_lille" -film
dimensions.mellem.width  = 460; // EDIT: specify width for "_mellem" -film
dimensions.mellem.height = 360; // EDIT: specify height for "_mellem" -film
dimensions.stor.width    = 640; // EDIT: specify width for "_stor" -film
dimensions.stor.height   = 480; // EDIT: specify height for "_stor" -film


function getCookie(Name) {
	var search = Name + "="
		if (document.cookie.length > 0) { 
			offset = document.cookie.indexOf(search)
			if (offset != -1) { 
			offset += search.length
			end = document.cookie.indexOf(";", offset)
			if (end == -1)
				end = document.cookie.length
			return unescape(document.cookie.substring(offset, end))
		}
	}
}


   //-->