function errorsuppressor(){
return true
}
window.onerror=errorsuppressor

/////////////////////////
var n=navigator.appName
var ns=(n=="Netscape")
var ie=(n=="Microsoft Internet Explorer")
if (ns)
document.write('<link href="../css/ft-1.css" rel="stylesheet" type="text/css">')
else if (ie)
document.write('<link href="../css/ft-1.css" rel="stylesheet" type="text/css">')
document.write('<style>.textfield1 {background-color: #ffffff;border-style: flat;border-width : 1 1 1 1; border-style : solid;border-color:#ababab}')
document.write('.textfield2 {background-color: #ffffff;border-style: flat;border-width : 1 1 1 1; border-style : solid;border-color:#deac2a}')
document.write('.button2, {background-color: #ffffff;border-style: flat;border-width : 1 1 1 1; border-style: solid; border-color: #888888;color: #336699;font-weight:bold}')
document.write('.select2, {background-color: #ffffff;border-style: flat;border-width : 1 1 1 1; border-style: solid; border-color: #888888;color: #336699;font-weight:bold}')
document.write('.button1{background-color: #ffffff;border-style: flat;border-width : 1 1 1 1; border-style : solid;border-color: #888888;color: #336699;font-weight:bold}</style>')

/////////////////////////
function gotopagina() {
if (document.productgroep.selected_type.options[document.productgroep.selected_type.selectedIndex].value != "none") {
document.location = document.productgroep.selected_type.options[document.productgroep.selected_type.selectedIndex].value
}
}

/////////////////////////
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundColor=color;
}

/////////////////////////
function change2(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.color=color
}

/////////////////////////
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}
