//Prevent screening
function noUnsolicited(user,name,domain,countrycode) 
{
	locationstring = 'mailto:' + user + '@' + domain + name + '.' + countrycode;
	window.location = locationstring;
}

//Open off-site link
function linkSelect ()
{
	var url = new Array("","http://www.bersa.se/","http://www.dahlbackrecordings.com/","http://www.rundnb.com/","http://www.dblux.se/","http://www.electronicdesert.com/","http://www.electronicdesert.com/edr/","http://www.janandersson.com/","http://www.nainebleue.com/","http://www.notleydentalcare.co.uk/","http://www.resurface.se/","http://www.tandlakarestrom.se/")
	var optionNumber = document.frmenquiry.selectsite.selectedIndex
	
	if (optionNumber != 0 && url[optionNumber] != null) {
	window.open(url[optionNumber]);

	}

}

//Set site specification
function specSelect ()
{
		var spec = new Array("","be","dr","db","dl","dk","ed","er","ja","nb","nd","ts","ta");
		var optionNo1 = document.frmenquiry.selectsite.selectedIndex;
	
	    if (optionNo1 != 0) { //the first option is used as directions holder
			location.href = 'default.asp?strSpec=' + spec[optionNo1];
		}
		if (spec[optionNo1] == "" || spec[optionNo1] == null ) { //the first option is used as directions holder 
			location.href = 'default.asp?strSpec=nb';
	}
} 
