
function kaf(url) {
var link = window.open(url,"kaf","location=no,menubar=no,scrollbars=yes,resizable=no,width=580,height=460");
}

function greenbay(url) {
var link = window.open(url,"greenbay","location=no,menubar=no,scrollbars=yes,resizable=no,width=580,height=460");
}

function lacrosse(url) {
var link = window.open(url,"lacrosse","location=no,menubar=no,scrollbars=yes,resizable=no,width=700,height=460");
}

function historyVideo(url) {
var link = window.open(url,"historyVideo","location=no,menubar=no,scrollbars=yes,resizable=no,width=700,height=460");
}

function manitowoc(url) {
var link = window.open(url,"manitowoc","location=no,menubar=no,scrollbars=yes,resizable=no,width=580,height=460");
}

function slideshow(url) {
var link = window.open(url,"slideshow","location=no,menubar=no,scrollbars=yes,resizable=no,width=860,height=860");
}

//call when page loads
window.onload = jumptoanchor;

//jumps to ancchor
function jumptoanchor(url)
{
  //test for anchor existence
  if(window.location && window.location.href.match(/#(\w.+)/))
  {
    //jump to anchor
    window.location.hash=window.location.href.match(/#(\w.+)/)[1]; 
  }
}