
//function footnotes(notes) {
//  var newWindow = window.open(notes,"","scrollbars,width=600,height=500")
//}

function footnotes(notes) {
	var picHeight,
		winWidth =  (window.screen.availWidth)*0.7,
//		winHeight =  (window.screen.availHeight)*0.7,
    winHeight = 425,
		winX,
		winY;
	if (winWidth < 300 || winWidth > 500) {
		winWidth = 300;
	}
	winX = ((window.screen.width)/2)-winWidth/2;
	winY = ((window.screen.height)/2)-winHeight/2;	
	var newWindow = window.open(notes,"","width=" + winWidth + ",height=" + winHeight + ",screenX=" + winX + ",screenY=" + winY + ",left=" + winX + ",top=" + winY)
}


