function my_popup(target,width,height) {
	if (!width) {
		width = 500;
	}
	if (!height) {
		height = 600;
	}
	window.open(target,'mywindow','width='+width+',height='+height+',scrollbars=yes');
}
