var mobileView = false;

if (navigator.userAgent.indexOf('iPhone') > 0 || navigator.userAgent.indexOf('iPad') > 0 || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
	mobileView = true;
}

function MM_openBrWindow(theURL,winName,popupwidth,popupheight) { //v2.0
	if (navigator.userAgent.indexOf('Safari') >= 0) {
		window.open(theURL,winName,'width=' + (popupwidth + 1) + ',height=' + (popupheight + 1) + ',resizable=yes');
	} else {
		window.open(theURL,winName,'width=' + popupwidth + ',height=' + popupheight + ',resizable=yes');
	}
}

function openCatalog(sw,p){
	var URLString = '/digitalcatalog/' + sw + '/book_swf.html';
	if(p != ''){
		URLString += '?startpage=' + p;
	}
	if(mobileView){
		document.location = '/digitalcatalog/' + sw + '/m/index.html#carousel';
	}else{
		MM_openBrWindow(URLString,'livebook',1010,657);
	}
	
}

