// OSFA Javascript 
var openNewWindow;
var openPdf

function openNewWindow(chart,w,h) {
			
newWindow = window.open(chart,'newWindow','toolbar=no,location=no,resizable=yes,scrollbars=no,width='+w+',height='+h+'');
newWindow.focus()
}

function openPdf(href) {
	newWindow = window.open(href,'newWindow','screenx=65,screeny=65,left=40,top=40,toolbar=no,titlebar=yes,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=750,height=550');
}
