function PopupImage(url, width, height) {
	if(!width || !height) {
		var width = 320;
		var height = 240;
	}
	window.open(url, 'PopupImage', 'width='+width+', height='+height+', resizable=no, statusbar=no, scrollbars=no');
}

