
function gotoUrl(url) {
	try {
		if (url == "")
			return;
		location.href = url;
	} catch (e) { }
}


try {
	var Links = new Array(
		new Array ( 'Cosmetics & Perfume',
			new Array ('Covermark', 'covermark.html'),
			new Array ('O\'Leary', 'oleary.html'),
			new Array ('Sungrace', 'sungrace.html'),
			new Array ('Acseine', 'acseine.html'),
			new Array ('KMA', 'kma.html'),
			new Array ('Evian', 'evian.html')
		),
		new Array ( 'Lingeries & Swimwear',
			new Array ('Guy Laroche', 'guyLaroche.html'),
			new Array ('Gunze', 'gunze.html')
		),
		new Array ( 'Hair Products',
			new Array ('Senscience', 'senscience.html'),
			new Array ('BSC', 'bsc.html'),
			new Array ('ISO', 'iso.html')
		)
	);

	document.writeln('<select OnChange="gotoUrl(this.options[this.selectedIndex].value)" class="link">');
	document.writeln('<option></option>');
	for (i=0; i<Links.length; i++) {
		document.writeln('<optgroup label="'+Links[i][0]+'">');
		for (j=1; j<Links[i].length; j++) {
			document.writeln('<option value="'+Links[i][j][1]+'">'+Links[i][j][0]+'</option>');
		}
		document.writeln('</optgroup>');
	}
	document.writeln('</option>');
	document.writeln('</select>');

} catch (e) { }
