/* Function that disables the primary screen stylesheet and enables the alternate screen stylesheet. */

function changeStyles() {
  var style_dec;
  for (i=0; (style_dec = document.getElementsByTagName("link")[i]); i++) {
    if (style_dec.getAttribute("rel").indexOf("style") != -1 && style_dec.getAttribute("title")) {
	  style_dec.disabled = true;
	  if (style_dec.getAttribute("title") == 'print_preview')
	    style_dec.disabled = false;
    }
  }
}

/* Function that opens the send page window. */

function sendPage() {
  window.open('http://www.barnardos.org.uk/send_page.htm?url=' + document.URL, 'winName', 'height=750, width=550, scrollbars=yes, toolbar=no, status=no, resizable=yes');
}

/* Function that opens the print preview window. */

function printPage() {
  window.open(window.location.href + "?style=print", 'winName', 'height=425, width=650, scrollbars=yes, toolbar=yes, menubar=yes, status=yes, resizable=yes');
}