function launchPlayer(){
  if(screen){
    leftPos=screen.width-786;
    leftPos=(leftPos/2)-5;
    topPos=screen.height-539;
    topPos=(topPos/2)-30;
  }
  url = "http://media.d1tv.net/gateway/open.html?account=moose_creek_ironworks";
  mMpiWin=window.open(url, "mMpiWin", "width=786,height=539,left="+leftPos+",top="+topPos);
}
function launchPortfolio(){
  if(screen){
    leftPos=screen.width-786;
    leftPos=(leftPos/2)-5;
    topPos=screen.height-539;
    topPos=(topPos/2)-30;
  }
  url = "http://pacc.d1tv.net/moosecreek/index.html";
  mPbWin=window.open(url, "mPbWin", "width=780,height=539,left="+leftPos+",top="+topPos);
}
function textBox(value){
  if(value=="Comments..."){
    document.myForm.comments.value="";
  }
}

function checkForm(){
  var myForm = document.myForm;
  if(!myForm.name.value){
    alert("Please include your NAME.");
    myForm.name.focus();
    return false;
  }
  if(!myForm.email.value){
    alert("Please include your EMAIL ADDRESS.");
    myForm.email.focus();
    return false;
  }
}

