function get_video_args( width, height ) {
    return 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,' +
           'width='+width+','+'height='+height+',' +
           'left=100,top=100';
}

function openvideo(title, bitrate) {
   var args;
   if (bitrate < 100) {
      args = get_video_args( 200, 210 );
   } else {
      args = get_video_args( 400, 350 );
   }
   var url = 'http://iseevideo.co.nz/showvideo/wmv_video?title=' + title + '&bitrate=' + bitrate;
   window.open(url, 'Video', args);
};

function open_flash_video(embed_code, width, height) {
    var args = get_video_args( width, height );
    var url = "http://iseevideo.co.nz/showvideo/embed/"+embed_code;
    window.open( url, 'Video', args );
}
