


//
// Popup a window for 
//
function popUpBookPage(URL) {
     window.open(URL, '','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=1000,height=800,left = 0,top = 0');
}


// This function opens a window. This window does a request for a PDF file. The PDF file is determined by module name. Possible names are:
//
// compare
// acco
// country
// district
// place
// toop
//
function openPDFWindow(module){
	var hostAddr =  getApplicationContext();
	var endAddress = hostAddr + '/PDF/' + module;
	window.open(endAddress, 'printWindow', 'resizable=true, scrollbars=true, width=800, height=420');
}

  
