
function switch_A(){
 if (document.go_a.letter.options[document.go_a.letter.selectedIndex].value != "none") {
 parent.location = document.go_a.letter.options[document.go_a.letter.selectedIndex].value
 }
}
function switch_B(){
 if (document.go_b.formats.options[document.go_b.formats.selectedIndex].value != "none") {
 parent.location = document.go_b.formats.options[document.go_b.formats.selectedIndex].value
 }
}
function switch_C(){
 if (document.go_c.states.options[document.go_c.states.selectedIndex].value != "none") {
 parent.location = document.go_c.states.options[document.go_c.states.selectedIndex].value
 }
}
function switch_D(){
 if (document.go_d.international.options[document.go_d.international.selectedIndex].value != "none") {
 parent.location = document.go_d.international.options[document.go_d.international.selectedIndex].value
 }                       
}
function switch_E(){
 if (document.go_e.internet.options[document.go_e.internet.selectedIndex].value != "none") {
 parent.location = document.go_e.internet.options[document.go_e.internet.selectedIndex].value
 }                       
}

// Interstitials
function mmDI(x){
  var min=3; // minimum minutes between interstitials (needs to be >2)
  now = new Date();
  var uaid = now.getTime() % Math.floor(8640000 - Math.random()*1000);
  now.setTime(now.getTime()+min*60000);
  if(document.cookie.indexOf('mmGIC=ON')<=0) {
    x='http://focusin.ads.targetnet.com/ad/id=Gtbundy&opt=hnj&cv=210&uid=' + uaid + '&/&url=' + x;
    document.cookie='mmGIC=ON; path=/; expires='+now.toGMTString();
  }
  return x;
}

//No Select Text script 
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
