function showPopup(url, width, height) {
	if (width == undefined) {
		width = 650;
	}
	if (height == undefined) {
		height = 600;
	}
	var mywindow = window.open(url,'_blank','scrollbars=yes,resizable=yes,width='+width+',height='+height);
	mywindow.focus();
}
