// 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; 
}

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;
      }
   }
}
var newwin = null;
function doPopup(f) {
   newwin = window.open ('','Betaling','scrollbars,status,width=550,height=600');
   newwin.focus();
   if (!self.name) {
      self.name = 'shopwin';
   }
   if (!newwin.opener) {
      newwin.opener = self;
   }
   f.opener.value = self.name;
   return (true);
}

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 );
}

function printPage(Me) {
   var vars = "width=700,height=350,status=no,toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,location=yes";
   var printWindow=window.open(Me,"PrintPage",vars);
   printWindow.print();
}

window.defaultStatus = 'http://HvepseEksperten.dk ApS (+45) 48 24 60 30';
window.status        = 'http://HvepseEksperten.dk ApS (+45) 48 24 60 30';

