// JavaScript Document

function Book(url) {
	agent = navigator.platform;
	
	var viewerUrl = url;
	if (agent == "MacPPC") {
		window.open(url + "/WYSIWeb_MAC_Viewer.html", "mac_eBook", "left=0, top=0, width=1024, height=768, directories=no, status=no, location=no, menubar=no, scrollbars=no, resizable=no, fullscreen=no");
	} else if (agent == "Win32" || agent == "Win16") {
		window.open(url + "/WYSIWeb_WIN_Viewer.html", "eBook", "width=1024, height=768, fullscreen=no");
	}
}
