//Copyright TurnTool ApS - 1998 - 2008 - All Right Reserved.
//You are NOT allowed to use this HTML document for derivative work including parts here of without the written permission from TurnTool.
//This HTML document may not be redistributed in any form.

function setupAllTabs()
{
}

function assignEventHandlers()
{
	var _tmp = element('menu').getElementsByTagName('input');
	for(var m = 0; m < _tmp.length; m++)
	{
		if(_tmp[m].id.toString().search(/^menu_/) != -1)
		{
			addEvent(_tmp[m],"click",menuClick,false);
		}	
	}
	_tmp = element('controlHolder').getElementsByTagName('a');
	for(var m = 0; m < _tmp.length; m++)
	{
		addEvent(_tmp[m],"click",menuClick,false);	
	}
}

function PEmakeTabs()
{	
	var hh = '<div id="help_loading" class="helptext"><div>'+lanObj.GetString('b1_waitload')+'</div></div><div class="seperator"></div><div id="help_default" class="helptext hidden"><div>'+lanObj.GetString('b1_welcome')+'</div></div><div class="seperator"></div>'; // Startup div
	var tabs = '<table width="100%"><tr>';
	
	
	// ================ MENU =========================
	// NOTE: input must have same name to allow only one item selected...
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_thumb" class="notselected">'+lanObj.GetString('h1_snapshot')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_overview" class="notselected">'+lanObj.GetString('h1_overview')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_walk" class="notselected">'+lanObj.GetString('h1_walk')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_tour" class="notselected">'+lanObj.GetString('h1_camtour')+'</label></td>';
	tabs += '</tr><tr>'
	
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_lay_wallcolor" class="notselected">'+lanObj.GetString('h1_wallcolor')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_lay_floorcolor" class="notselected">'+lanObj.GetString('h1_floorcolor')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_lay_interiorpos" class="notselected">'+lanObj.GetString('h1_move')+'</label></td>';
	tabs += '<td><label><input type="radio" name="menuitem" id="menu_lay_measurement" class="notselected">'+lanObj.GetString('h1_meassure')+'</label></td>';
	
	tabs += '</tr></table>';
	
	// ================ HELP =========================
	hh += '<div id="help_nav_walk" class="helptext hidden"><h1>'+lanObj.GetString('h1_walk')+'</h1>';
	hh += '<div>'+lanObj.GetString('b1_movehelp')+'</div></div><div class="seperator"></div>';	
	
	hh += '<div id="help_nav_tour" class="helptext hidden"><h1>'+lanObj.GetString('h1_camtour')+'</h1>';
	hh += '<div><div class="buttonHolder">'+lanObj.GetString('b1_camtour')+'</div></div></div><div class="seperator"></div>';	

	hh += '<div id="help_nav_overview" class="helptext hidden"><h1>'+lanObj.GetString('h1_overview')+'</h1>';
	hh += '<div>'+lanObj.GetString('b1_overview')+'</div></div><div class="seperator"></div>';
	
	hh += '<div id="help_nav_thumb" class="helptext hidden"><h1>'+lanObj.GetString('h1_snapshot')+'</h1>';
	hh += '<div><div class="buttonHolder">'+lanObj.GetString('b1_snapshot')+'</div></div></div><div class="seperator"></div>';
	
	// Random tip of the day
	hh += '<div id="help_tip_01" class="helptext"><div><h1>'+lanObj.GetString('h1_dailytip')+'</h1>'+lanObj.GetString('b1_dailytip0'+(Math.floor(Number(lanObj.GetString('num_dailytips')) * (Math.random() % 1))+1).toString())+'</div></div><div class="seperator"></div>';
	
	// ================ HELP =========================
	hh += '<div id="help_lay_wallcolor" class="helptext hidden">';
	hh += '<h1>'+lanObj.GetString('h1_wallcolor')+'</h1>';
	hh += '<div>'+lanObj.GetString('b1_wallcolortheme');
	hh += '<p><select name="PaletteDropDown" id="PaletteDropDown" size="1" onchange="doPaletteChanged()" onmouseover="doTooltip(event,9)" onmouseout="hideTip()">';
	for(var m = 0; m < wallcolors[1].length ;m++)
	{
		hh += '<option value="'+m+'"' ;
		if(m == 0)
			hh += ' selected="selected" ';
		hh += '>'+wallcolors[1][m]+'</option>';
	}
	hh += '</select></p><div id="farvetabel" class="paletHolder"></div><!--<div class="seperatorBar"></div>--></div><div class="seperator"></div></div>';
			
	hh += '<div id="help_lay_floorcolor" class="helptext hidden"><h1>'+lanObj.GetString('h1_floorcolor')+'</h1>';
	hh += '<div>'+lanObj.GetString('b1_floorcolortheme');
	hh += '<div class="floorHolder"><div id="taeppetabel1" class="taeppetabel">';
	
	for( i=0; i<floorArray[0].length; i++ )	// insert wood and carpet floors
	{
		var _sponsor = 0;	// floor sponsor index
		var _type1 = "wood";
		for(var l = 0; l < floorArray[_sponsor][i][3].length; l++)
		{
			if(floorArray[_sponsor][i][3][l] == 0 || floorArray[_sponsor][i][3][l] == 2) 
			{
				hh += '<a href="#" id="floorChanger_misc_" class="floorMaterial01" onclick="carpetClicked('+_sponsor+',' + i + ',\''+_type1+'\'); return false;" onmouseover="doTooltip(event,10)" onmouseout="hideTip()" style="background-image: url('+planedit_sponsor_path+'/1/floorthumbs/' + floorArray[_sponsor][i][1] + '.jpg)" width="100" height="50"><br /><span class="floorMaterialNames">&nbsp;' /*+ floorArray[_sponsor][i][0]*/ + '</span></a>';
			}
		}
	}
	hh += '</div><br />'+lanObj.GetString('b1_floortiles')+'<div id="taeppetabel2" class="taeppetabel">';	// now insert tiles
	for( i=0; i<floorArray[0].length; i++ )
	{
		var _sponsor = 0;	// floor sponsor index
		var _type1 = "tile";
		for(var l = 0; l < floorArray[_sponsor][i][3].length; l++)
		{
			if(floorArray[_sponsor][i][3][l] == 1)
			{
				hh += '<a href="#" id="floorChanger_misc_" class="floorMaterial01" onclick="carpetClicked('+_sponsor+',' + i + ',\''+_type1+'\'); return false;" onmouseover="doTooltip(event,10)" onmouseout="hideTip()" style="background-image: url('+planedit_sponsor_path+'/1/floorthumbs/' + floorArray[_sponsor][i][1] + '.jpg)" width="100" height="50"><br /><span class="floorMaterialNames">&nbsp;' /*+ floorArray[_sponsor][i][0]*/ + '</span></a>';
			}
		}
	}
	hh += '</div></div></div><div class="seperator"></div></div>';				
							
	hh += '<div id="help_lay_interiorpos" class="helptext hidden"><h1>'+lanObj.GetString('h1_move')+'</h1>';
	hh += '<div>'+lanObj.GetString('b1_movefurniture')+'</div></div><div class="seperator"></div>';
				
	hh += '<div id="help_lay_measurement" class="helptext hidden"><h1>'+lanObj.GetString('h1_meassure')+'</h1>';
	hh += '<div id="link_meassuretext">'+lanObj.GetString('b1_meassuretext');
	hh += '</div></div><div class="seperator"></div>';
	
	hh += '<div id="help_lay_help" class="helptext hidden"><h1>'+lanObj.GetString('h1_help')+'</h1>';
	hh += '<div>'+lanObj.GetString('help_truble01');
	hh += '</div></div><div class="seperator"></div>';


	if(TNTsupportedPlatform()==false)
	{
		/*tabs = '<div class="tab-pane hidden" id="tabPane1">';
	
		tabs += '<div class="tab-page" id="tabPage4">';
		tabs +='<h2 class="tab">'+lanObj.GetString('h1_navigation')+'</h2>';
		tabs += '<table width="100%"><tr class="menuicon">';
		tabs += '<td><a href="#" id="menu_nav_vinkel1"><img src="/files/planedit/menu_angle1.gif" /><br />Vinkel 1</a></td>';	
		tabs += '<td><a href="#" id="menu_nav_vinkel2"><img src="/files/planedit/menu_angle2.gif" /><br />Vinkel 2</a></td>';	
		tabs += '</tr></table></div>';
		
		hh += '<div id="help_nav_angle1" class="helptext hidden"><h1>'+lanObj.GetString('h1_navigation')+'</h1>';
		hh += '<div><p>'+lanObj.GetString('b1_rotateinjava')+'</p></div></div><div class="seperator"></div>';
		*/
		var tabs = '<table width="100%"><tr>';
		tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_vinkel1" class="notselected">'+lanObj.GetString('h1_angle1')+'</label></td>';
		tabs += '<td><label><input type="radio" name="menuitem" id="menu_nav_vinkel2" class="notselected">'+lanObj.GetString('h1_angle2')+'</label></td>';
		tabs += '</tr></table>';
		window.setTimeout("javaReady();",1500);
	}
	element('menu').innerHTML = tabs;
	element('ctrlContent').innerHTML = hh;
}

function setDynamicContent()
{
	var elm = element('agentlogo');
	var html = elm.innerHTML.toString();
	if(html.search(/nobreak/) == -1 && infoArray.length > 0)
	{
		if(logolink.search(/""/) == -1)
			html += logolink;
		html += '<br><span class="nobreak">'+lanObj.GetString('w_casename')+' '+infoArray[3]+'</span> ';
		if(infoArray[0].length > 0)
			html += '<span class="nobreak">'+infoArray[0]+'</span>';
		if(infoArray[2].length > 0)
			html += ' <span class="nobreak">'+infoArray[2]+'</span>';
		if(infoArray[1].length > 0)
			html += ' <span class="nobreak">'+infoArray[1]+'</span> ';
	}
	elm.innerHTML = html;
	
	elm = element('supportinfo');
	html = '<span class="left">'+lanObj.GetString('t_guided3dmodel')+'. '+lanObj.GetString('s_techfrom')+'.</span>';
	if(infoArray[4].length > 0)
		html += lanObj.GetString('s_supplier')+' '+infoArray[4]+'.';
	elm.innerHTML = html;
		
	if(nativeLang != 'uk')
	{
		elm = element('flag');
		var _href = window.location.href.toString();
			if(_href.indexOf('?') == -1)
				_href += '?';
			else
				_href += '&';
		var _href2 = '';
		var _index = _href.indexOf('lan=');
		if(_index == -1) {
			_href += 'lan=';
			_href2 = _href+'uk';
			_href += nativeLang;
		}
		else {
			_href = _href.replace(_href.substr(_index+4,_index+6),nativeLang);
			_href2 = _href.replace(_href.substr(_index+4,_index+6),'uk');
		}
		html = lanObj.GetString('w_language')+' <a href="'+_href+'" class="selected" ><img src="files/planedit/'+nativeLang+'.gif"></a>';
		html += '<a href="'+_href2+'" class="notselected" ><img src="files/planedit/uk.gif"></a>';
		elm.innerHTML = html;
	}
	
	elm = element('floorSelector');
	html = lanObj.GetString('w_floorselector')+' <select id="floorselectorlist" onchange="newFloorSelected(this);">';
	for(var m = buildingLevelStart; m < buildingLevelEnd && buildingLevelStart<=buildingLevelEnd; m++)
	{
		html += '<option value="'+m+'"';
		if(m==level)
			html += ' selected="selected"';
		var floorname = m;
		if(floorname < Number(lanObj.GetString('num_floorautocount'))+1)
			floorname = lanObj.GetString('w_'+floorname+'floor');
		else
			floorname = (Number(lanObj.GetString('num_floorautocount'))+floorname-4)+lanObj.GetString('w_floor');
		html += '>'+floorname+'</option>';
		
	}
	html += '</select>';
	elm.innerHTML = html;
}
function menuSetActive(who)
{
	var _tmp = element('menu').getElementsByTagName('a');
	var newSelectedFunction = who.id.toString();
	for(var m = 0; m < _tmp.length; m++)
	{
		if(_tmp[m].id.toString().length > 1 && _tmp[m].id.toString() == newSelectedFunction)
		{
			_tmp[m].className = 'selected';
		}
		else if(_tmp[m].id.toString().length > 1)
		{
			_tmp[m].className = 'notselected';
		}
	}	
}
function helpSetActive(who)
{
	_tmp = element('ctrlContent').getElementsByTagName('div');
	var newSelectedFunction = who.id.toString().substr(who.id.toString().lastIndexOf('_'),who.id.toString().length);
	for(var m = 0; m < _tmp.length; m++)
	{
		if(_tmp[m].id.toString().search(/^help_/) != -1)
		{
			if(_tmp[m].className.toString().search(/hidden/) == -1)
			{
				_tmp[m].className = _tmp[m].className + ' hidden';		
			}
		}
		if(_tmp[m].id.toString().search(newSelectedFunction)!= -1)
		{
			_tmp[m].className = _tmp[m].className.toString().replace('hidden','');
		}
	}
}
function menuClick(event)
{
	if(this.href && this.href.toString().search(/#$/) == -1)
		return true; // if it is a real link to another page!
	inactiveuser = false;
	var allowbubble = false;
	var _id = this.id.toString();
	if(_id.search(/_nav_/)!= -1)
	{
		if(_id.search(/_walk$/)!= -1)
		{
			changeNavMode(0);
		}
		else if(_id.search(/_tour$/)!= -1)
		{
			changeNavMode(1);
		}
		else if(_id.search(/_overview$/)!= -1)
		{
			changeNavMode(4);
		}
		else if(_id.search(/_thumb$/)!= -1)
		{
			
		}
		else if(_id.search(/_vinkel[0-9]$/)!= -1)
		{
			var num = Number(_id.charAt(_id.length-1));
			if(!isNaN(num))
				panoImage(num-1);
		}
		allowbubble = true;
	}
	else if(_id.search(/_lay_/)!= -1)
	{
		if(_id.search(/wallcolor$/)!= -1)
		{
			doPaletteChanged();
			setMeasurementMode(0);
		}
		else if(_id.search(/floorcolor$/)!= -1)
		{
			setMeasurementMode(0);
		}
		else if(_id.search(/interiorpos$/)!= -1)
		{
			changeNavMode(6);
		}
		else if(_id.search(/measurement$/)!= -1)
		{
			changeNavMode(5);
		}
		allowbubble = true;
	}
	else if(_id.search(/_misc_/)!= -1)
	{
		// misc returns false, therefore no gui change
		if(_id.search(/_playpause$/)!= -1)
		{
			changeNavMode(1);
		}
		else if(_id.search(/_movemeassure$/) != -1)
		{
			setMeasurementMode(measureMode);
		}
		return false;		
	}
	//menuSetActive(this);
	helpSetActive(this);
	if(allowbubble)
		return true; // else stop bubbleing... see below!
	if (event.preventDefault)
        event.preventDefault();
    else
        event.returnValue= false;
    return false;
}
function changelanguageevent(event)
{
	var _tmp = element('flag').getElementsByTagName('a');
	var newLan = this.childNodes[0].src.toString();
	newLan = newLan.substring(newLan.lastIndexOf('/')+1,newLan.length-4);
	changeLanguage(newLan);
}
function changeLanguage(newLan)
{
	var str = window.location.href.toString();
	if(str.substring(str.length-1,str.length) == '#')
    str = str.substring(0,str.length-1);
	if(str.indexOf('lan=') > -1)
		str = str.replace(curLang,newLan);
	else
	{
		if(str.indexOf('?') == -1)
			str += '?';
		else
			str += '&';
		str += 'lan='+newLan;
	}
	window.location.href = str;
}

var tntWidth = 600;
var tntHeight = 400;


function centerWindow()
{
}

function SetToolTipLanguage()
{			
	messages[0] = new Array('',lanObj.GetString('w_measure') + tntWidth + lanObj.GetString('w_y_x_z_pixels') + tntHeight + lanObj.GetString('w_pixel')
									+ Math.round((tntWidth / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_y_x_z_pixels') + Math.round((tntHeight / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_cm_in') + dpi + lanObj.GetString('w_dpi')
									+ lanObj.GetString('w_filesize') + Math.round(filesize * 10) / 10 + lanObj.GetString('w_megabytes'));
	messages[1] = new Array('',lanObj.GetString('w_measure') + highWidth + lanObj.GetString('w_y_x_z_pixels') + highHeight + lanObj.GetString('w_pixel')
									+ Math.round((tntWidth * highfact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_y_x_z_pixels') + Math.round((tntHeight * highfact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_cm_in') + dpi + lanObj.GetString('w_dpi')
									+ lanObj.GetString('w_filesize') + Math.round(highfact * highfact * filesize * 10) / 10 + lanObj.GetString('w_megabytes'));
	messages[2] = new Array('',lanObj.GetString('w_measure') + superWidth + lanObj.GetString('w_y_x_z_pixels') + superHeight + lanObj.GetString('w_pixel')
									+ Math.round((tntWidth * superfact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_y_x_z_pixels') + Math.round((tntHeight * superfact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_cm_in') + dpi + lanObj.GetString('w_dpi')
									+ lanObj.GetString('w_filesize') + Math.round(superfact * superfact * filesize * 10) / 10 + lanObj.GetString('w_megabytes'));
	messages[3] = new Array('',lanObj.GetString('w_measure') + megaWidth + lanObj.GetString('w_y_x_z_pixels') + megaHeight + lanObj.GetString('w_pixel')
									+ Math.round((tntWidth * megafact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_y_x_z_pixels') + Math.round((tntHeight * megafact / dpi) * inch2cm * 10) / 10 + lanObj.GetString('w_cm_in') + dpi + lanObj.GetString('w_dpi')
									+ lanObj.GetString('w_filesize') + Math.round(megafact * megafact * filesize * 10) / 10 + lanObj.GetString('w_megabytes'));
	//Navigation
	messages[4] = new Array('',lanObj.GetString('mo_walk'));
	messages[5] = new Array('',lanObj.GetString('mo_camtour'));
	messages[6] = new Array('',/*lanArray[lanIndex][31]*/'');
	messages[7] = new Array('',/*lanArray[lanIndex][32]*/'');
	//væg farver			
	messages[8] = new Array('',lanObj.GetString('mo_wallcolor'));
	messages[9] = new Array('',lanObj.GetString('mo_wallcolorpalet'));
	//gulve
	messages[10] = new Array('',lanObj.GetString('mo_floorcolor'));
}

function javaReady()
{
	showElement(element('help_loading'),false);
	showElement(element('help_default'),true);
	showElement(element('tabPane1'),true);	
}

function OnReady()
{
	if(currNavMode == -1) 
	{
		showElement(element('help_loading'),false);
		showElement(element('help_default'),true);
		element('menu_nav_walk').checked = true;	// mark "gå selv rundt" as active.
	}
	inactiveuser = true;
	timerIDInActiveUser = window.setTimeout("checkInactiveUser();",11500);
	var frameCount = parseInt(TNTDoCommand('SceneGraph.Objects(Camera01).GetFrameCount()'))-1.0;
	if (frameCount>0)
	{
		TNTDoCommand('Objects(PhysicsSphere).SetEnable(false)');
		TNTDoCommand('Objects(Camera01).PlayAnimation(0,'+frameCount+',false,30)');
		if (mode>=0)
		{
			timerIDEnableWalk = setTimeout("changeNavMode(0)",frameCount*1000/30);
		}
	}
	TNTDoCommand('Objects(*#A*).SetEnable(false)');		
	focus();
	window.setTimeout("floorChangeInProgress = false;",12500);
	if (TNTDoCommand('Objects(#Clock_Hour).GetObjectCount()')>0)
	{
		if (TNTDoCommand('Objects(#Clock_Minute).GetObjectCount()')>0)
		{
			updateClock();
		}
	}
}

var wallcolors = [
	/* Sponsors */ 
	[		
			/*["FFFBF0", "Pollux", "F7FFF4", "Centauri", "E4EDE1", "Albireo", "EBEDEA", "Acrux", "FFF6F4", "Aldebaran", "FFFDEB", "Helios", "EBF2E9", "Carinae", "F8F7EF", "Altair", "F0F3EC", "Sirius", "FDEFDA", "Agena", "F3FDFC", "Vega", "FEFEFE", "Polaris", "F6FEF4", "Capella", "F5F3FE", "Castor", "F1FEFA", "Regulus", "F4ECD5", "Mimosa", "CCD7C1", "Alnitak", "C3D1C6", "Scorpii", "E0D8C2", "Procyon", "F7E4E1", "Spica", "D4DDE5", "Rigel", "E5D7CC", "Canopus", "C9CBBA", "Mira", "E3F3F4", "Hamal", "FAF5D7", "Arcturus", "FFE3C7", "Antares", "D7DDCF", "Mizar", "FFF6DA", "Algol", "E9E2F1", "Shaula", "E5E3C8", "Alcyone", "DEDAE4", "Proxima"],*/
			["FFFFFF","DYRUP 800","F9CDC0","DYRUP 6145","C0C1C3","DYRUP 2010","BCD7D1","DYRUP 4150","D2C3D6","DYRUP 4146","FFEABA","DYRUP 3143","EBDDC4","DYRUP 3145","EBD8B7","DYRUP 3133","E7D6BF","DYRUP 811","EACDC0","DYRUP 8063","C0D8CE","DYRUP 5127","B7BCCA","DYRUP 4133","E9CFCB","DYRUP 2007","EBC7AF","DYRUP 6143","CBDCD1","DYRUP 5138","DBC3A6","DYRUP 2020","D1D0D2","DYRUP 4149","D1DFD6","DYRUP 5137","EE5264","DYRUP 6122","8A94B2","DYRUP 4114","DDCBDA","DYRUP 6105","FED2B6","DYRUP 5134","E6E3C0","DYRUP 5139","FF9D68","DYRUP 3146","E2DFE1","DYRUP 2023","FDC6AC","DYRUP 3148","87B2D0","DYRUP 4135","235F93","DYRUP 4137","B69993","DYRUP 2022","D89C84","DYRUP 7021","E3C995","DYRUP 3134","7D8485","DYRUP 233"],
			["DFC3C3","DYRUP 6142","584236","DYRUP 2018","FDCC6F","DYRUP 3138","762936","DYRUP 6131","3B3F3E","DYRUP 5117","C0C1C3","DYRUP 2008","A17063","DYRUP 7019","9D8E82","DYRUP 2021","EFB0C3","DYRUP 6106","895A71","DYRUP 6128","4A5251","DYRUP 2019","F03333","DYRUP 6110","002852","DYRUP 4123","FFD2AF","DYRUP 3130","FEEDCE","DYRUP 3147","C7896B","DYRUP 6111","949B99","DYRUP 2014","7D3963","DYRUP 6129","48293D","DYRUP 4127","00465E","DYRUP 4121","34281D","DYRUP 9202","EACDC0","DYRUP 3137","FF9145","DYRUP 6121","CCC6BC","DYRUP 3136","636669","DYRUP 2015","833129","DYRUP 6132","F6CCC9","DYRUP 6144","071732","DYRUP 4128","5D3326","DYRUP 7020","EBC7AF","DYRUP 3132","DC5726","DYRUP 6125","BBADA8","DYRUP 2017"],
			["FCEED6","DYRUP 8062","D1D0D2","DYRUP 2016","AA7B2C","DYRUP 5115","75231E","DYRUP 745","762936","DYRUP 6133","003928","DYRUP 5116","69937D","DYRUP 5129","6F252A","DYRUP 6136","E2E1E2","DYRUP 802","FFEABA","DYRUP 3139","A4996E","DYRUP 5136","B12530","DYRUP 6124","A42724","DYRUP 6126","D5B41F","DYRUP 3135","36705E","DYRUP 5133","5A2837","DYRUP 4147","EBC09A","DYRUP 3142","CFB187","DYRUP 5118","FFE12A","DYRUP 3129","BD5C15","DYRUP 6123","9F1E31","DYRUP 6139","592B52","DYRUP 469","0087A9","DYRUP 4118","002A43","DYRUP 4129","ECD1B5","DYRUP 806","B1B2B4","DYRUP 2011","4C473A","DYRUP 9203","FFB886","DYRUP 322","A92A1D","DYRUP 6127","85463A","DYRUP 7084","003765","DYRUP 4119","4A4D50","DYRUP 4125"],
			["FFD797","DYRUP 3144","F8C3B7","DYRUP 6135","D62E2E","DYRUP 650","8996BC","DYRUP 4138","AC9E7B","DYRUP 5119","87B2D0","DYRUP 4116","80B2A4","DYRUP 5134","2D6B99","DYRUP 4139","BD3435","DYRUP 6138","9A5386","DYRUP 4132","D290AE","DYRUP 4145","FFD374","DYRUP 3128","625D1E","DYRUP 5135","5DA631","DYRUP 5109","D1CA91","DYRUP 5107","00609E","DYRUP 4117","DB4E24","DYRUP 630","FFB852","DYRUP 349","A92A2B","DYRUP 6137","8E8CB1","DYRUP 4115","FFCE9C","DYRUP 3141","006B5C","DYRUP 5114","2B6885","DYRUP 4134","A4A5A9","DYRUP 2021","CB678D","DYRUP 644","401B34","DYRUP 4148","AEA9C4","DYRUP 4142","006C59","DYRUP 5130","D3BD68","DYRUP 5104","C8A267","DYRUP 5108","7DB5D8","DYRUP 4131","8DB2A3","DYRUP 5128" ]
	],
	/* Names */
	[/*'Extreme',*/'Energy','Passion','Sensual']
	];

