// common set of javascript for nearly all pages ...
// for the www.imda.ie conference website
function OpenPrintPreviewWindow() {
	// open the current page in another window and strip off the skin - making the page printer friendly ..
	// window.open( location.pathname + location.search + '&PPF' + location.hash , '_blank' ) ;
	window.open( location.pathname + location.search + '&PPF', '_blank' ) ;
}
