function openPopup (url, width, height) {
	w = width ? width : 500;
	h = height ? height : 500;
	var win = window.open(url, 'imagePopup', 'width='+w+',height='+h+',location=no,scrollbars=no,status=no,resizable=yes');
	win.focus();
}
