/**
 * @author FSAB
 */

	
var browser = navigator.userAgent;

if(browser.indexOf('MSIE 6.0') > 0 && browser.indexOf('MSIE 7.0') < 1){
	document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/ie7.css\" />");
}
else if(browser.indexOf('MSIE 7.0') > 0){
	document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/ie7.css\" />");
} 
else if(browser.indexOf('MSIE 8.0') > 0){
	document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/standard.css\" />");
}
else{
		//alert(browser);
	document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/standard.css\" />");
}


function marke_val() {
	window.location = '/produkter.php?marke=' + document.getElementById('marke').value;
}
function modell_val() {
	window.location = '/produkter.php?modell=' + document.getElementById('modell').value;
}
function motor_val() {
	window.location = '/produkter.php?motor=' + document.getElementById('motor').value;
}