

function changeColour(elementId) {
    var interval = 1000;
    var colour1 = "#e4fbdd", colour2 = "yellow";
    if (document.getElementById) {
      var element = document.getElementById(elementId);
      element.style.color = (element.style.color == colour1) ? colour2 : colour1;
      setTimeout("changeColour('" + elementId + "')", interval);
    }
  }

  
function contact(LINK) {
	
			LeftPosition=(screen.width)?(screen.width-450)/2:100;
			TopPosition=(screen.height)?(screen.height-450)/2:100;

	window.open(LINK,'Pillsname','top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=520,height=600')
}
  
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

if (top.location != self.location) {
top.location = self.location.href
}