function openMovie(movie, title) { if (!title) title = 'PURE CYCLING TV'; openShadowbox('/wp-content/themes/canyonheroes01/video/video.html?file='+movie,'iframe',title, 480, 270); } function openYTMovie(youtoube_id, title) { var url; var browser_info = 'CCBot/1.0 (+http://www.commoncrawl.org/bot.html)'; var browser_type = 'standard'; if (browser_info && (browser_info.match(/ipod/i) || browser_info.match(/ipad/i) || browser_info.match(/iphone/i))) { browser_type = 'mobile'; } if (browser_type == 'standard') { url = 'http://www.youtube.com/v/'+youtoube_id+'&rel=1&autoplay=1&hd=1'; } else { url = 'http://www.youtube.com/embed/'+youtoube_id; } if (!title) title = 'PURE CYCLING TV'; openShadowbox(url,'iframe',title, 720, 430); } var openShadowbox = function(content, player, title, width, height) { Shadowbox.open({ content: content, player: player, type: player, title: title, width: width, height: height }); };