﻿
/*
function pop(filename){ 
  var newWin = window.open(filename,'newWin','toolbar=0,location=0,directories=0,scrollbars=0,width=260,height=80'); 
  newWin.focus(); 
} 
*/

function contact(){ 
  var newWin = window.open('../about/contact.html', 'contactWin', 'toolbar=0,location=0,directories=0,scrollbars=0,width=260,height=80'); 
  newWin.focus(); 
}

/*
function youtube(){ 
  var newWin = window.open('../keiba/ytview.html', 'contactWin', 'toolbar=0,location=0,directories=0,scrollbars=0,width=500,height=500'); 
  newWin.focus(); 
}
*/
function youtube(fname){
    var fn = 'youtube/' + fname + 'Index.html';
    var height = '700';
    var width = '550';
    if (fname=='japancup')
    {
        height = '780';
        width = '680';
    }
    else if (fname=='derby' || fname=='oaks')
    {
        height = '780';
    }
    var param = 'toolbar=0,location=0,directories=0,scrollbars=yes,width=' + width + ',height=' + height;
    var newWin = window.open(fn, 'miniWin', param); 
    newWin.focus(); 
}

