// JavaScript Document
function checkiphone () {
	var ua = navigator['userAgent'];
	if (ua.indexOf("iPhone") != -1) {
		ans = confirm("Hello iPhone User!\nIf you would like to use our unique BFTV Mobile application for viewing BFTV movies on your iPhone please click 'OK'. Remember to add a bookmark to your Home Screen to save the page for next time. ");
		if (ans) location = "http://www.business-finance.tv/mobile/";
	}
	if (ua.indexOf("iPod") != -1) {
		ans = confirm("Hello iPod Touch User!\nIf you would like to use our unique BFTV Mobile application for viewing BFTV movies on your iPod please click 'OK'. Remember to add a bookmark to your Home Screen to save the page for next time. ");
		if (ans) location = "http://www.business-finance.tv/mobile/";
	}
}
checkiphone();
