function watchApp() { var curDate = new Date(); $("osl_watch").innerHTML = curDate.toLocaleString(); setTimeout("watchApp();", 1000); } setTimeout("watchApp();", 1000); // create a shorthand function so we don't need to put all this in the opener's onclick function openYouTube(opener) { var returnValue; // Safari Mobile doesn't have Flash, so we just let the device use the built-in // YouTube viewer. if (/(iPhone|iPod|iPad)/.test(navigator.userAgent)) returnValue = true; else returnValue = hs.htmlExpand(opener, { objectType: 'swf', objectWidth: 480, objectHeight: 385, transitions: ['fade'], width: 480, outlineType: 'rounded-white', outlineWhileAnimating: true, allowSizeReduction: false, wrapperClassName: 'borderless floating-caption', dimmingOpacity: 0.75, align: 'center', // always use this with flash, else the movie will be stopped on close: preserveContent: false, wrapperClassName: 'draggable-header no-footer', swfOptions: { params: { allowfullscreen: 'true' } }, maincontentText: 'You need to upgrade your Flash player' }); return returnValue; }