// Copyright http://finn-rasmussen.com/
// Hvepse Eksperten, Phone (+45) 48 24 60 30
// You may copy this code, if you keep the copyright notice

// Do NOT allow others to use frames
if ( top != self ) { 
    top.location = self.location; 
}

function onSubmit( Me ) {
    if ( document.all ) {
       Me.value = document.forms['HvepseEksperten'].AskQuestion.value;
    } else {
       // NOTE: The number [i] MUST be the seach form in question
       // Known bug: does not work with Me.sp-q
       Me.value = document.forms[1].AskQuestion.value; // NN 4.7
    }
    return true;
}

var oldCssStyle = '';
function highlightButton(s) {
  if (document.all && event.srcElement.tagName=="INPUT") {
    if (s.length == 0) {
       if (oldCssStyle.length != 0) {
          event.srcElement.className = oldCssStyle;
       }
    } else {
       oldCssStyle = event.srcElement.className;
       event.srcElement.className = oldCssStyle+' '+s;
    }
  }
}

function openWindow( pic, w, h ) {
    var width  = (w != null) ? w : 500;
    var height = (h != null) ? h : 500;
    var param  = 'resizable=false,location=false,status=false,menubar=false,scrollbars=false,toolbar=false,width=' + width + ',height=' + height + '';
    window.open( pic, "", param );
}

window.defaultStatus = 'Phone: (+45) 48 24 60 30';
window.status        = 'Phone: (+45) 48 24 60 30';

