function handlePopup(url, width, height) {
	window.open(url, 'popup', 'width='+width+', height='+height+', scrollbars=yes');
}

function handlePopupDefaultSize(imageUrl) {
	window.open(imageUrl, 'popup2', 'scrollbars');
}


