// Copyright (c) 2000-2005 Unidocs. All rights reserved.
function openEbook(target,theme,jo)
{
	var gw;
	if(theme)
	{
		var webBookConfig;
		if(jo)
			webBookConfig=ea(jo+"/theme/"+theme+"/conf/config.xml");
		else 
			webBookConfig=ea("theme/"+theme+"/conf/config.xml");
		try{
			var node=webBookConfig.selectSingleNode("Theme/ENLARGEMENT");
			var fullDraw=0;
			if(node)
				fullDraw=parseInt(node.attributes.getNamedItem("fulldraw").text);
		}
		catch(e){
		}
		if(fullDraw)
			gw='fullscreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=0,top=0,width='+(screen.width-8)+',height='+(screen.height-27);
		else 
			gw='fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=0,top=0,width='+(1024-8)+',height='+(768-27);
	}
	else 
			gw='fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=0,top=0,width='+(1024-8)+',height='+(768-27);
		var ll;
		if(jo)
			ll=open(jo+'/library/'+target+'/viewer.html','ezPDFWebBook',gw);
		else 
			ll=open('library/'+target+'/viewer.html','ezPDFWebBook',gw);
			return ll
}