/*
* Javascript for DPM ebook 
* 2007/08/09
*/

function flipper(book){

var win_width= (screen.availWidth - 900) / 2;
var win_height = (screen.availHeight - 715) / 2;
var options = "width=900,height=675,left=" + win_width + ",top=" + win_height;

window.open(book,"screen",options);

}
